+ 1
Why should we put inserters in cout
Why can't we use this: cout<<"Hello World"; instead of: cout<<"Hello"<<"World; What is the difference?
3 Answers
+ 1
Output will differ:
Hello World
vs
HelloWorld
Easy readability is just one viewpoint, it has a bigger chance to make mistakes doing it the second way.
0
You can by all means do that. The difference is that the former is more efficient and readable.
0
It the console output operater