Program To Split Given Sentence At Spaces In C++ | C++ By Tech Blooded | #Shorts

preview_player
Показать описание
In this video, u will learn about how to split given sentence at spaces in C++.

Follow Us on social media:

#C++
#C++programming
#techblooded
#splitatspaces
#cppprograms
#Shorts
#short
#cpp
#C++14
#C++17
#C++Programmobile

We are doing our best to prepare the content of this channel. However, Tech Blooded cannot warranty the expressions and suggestions of the contents, as well as its accuracy. In addition, to the extent permitted by the law, Tech Blooded shall not be responsible for any losses and/or damages due to the usage of the information on our channel.

By using our channel, you hereby consent to our disclaimer and agree to its terms.
The links contained on our channel description box may lead to external sites, which are provided for convenience only.
Рекомендации по теме
Комментарии
Автор

everyones welcome
string a ="your string"
for (int i=0; i <a.length(); i++)
{
string b;
while (a[i]!=" " && i>a.length())
{
b+=a[i];
i++;

}
cout <<b<<endl;
}

nidadursunoglu