+ 1
Do we have to write cout << "This" << "is" << "awesome"? Can we write cout << "This is awesome"?
2 Antworten
+ 1
Yes. Also, you will be writing "Thisisawesome" in the first case.
+ 1
First option will print Thisisawesome
Second option will print This is awesome.
It will be good to go with second option as it has readability in the output statement.