0
How to leave spaces in C++
like this Output Any String https://code.sololearn.com/cb9gS6o4yhJT/?ref=app
4 Answers
+ 6
You means line breakđ€
You have two option i.e,
Use
cout<<endl;
Or
cout<<"\n";
+ 4
"\n" creates a new line.
endl also creates a new line.
+ 3
P A Arrchith Iyer you don't need to use both, count<<endl; Or count<<"\n" You can use either one of these
+ 2
Thank you