Possible Duplicate:
C++: “std::endl” vs “\n”
I'm wondering if there is any significant difference between these two ways to print newline :
cout << endl; //approach1
cout << "\n"; //approach2
Is there any practical difference?
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
Yes, they're different.
| |||||||||||||||||||||
feedback
|
endlwill flush the stream. Unless you absolutely need to flush the stream you can use either of them. – Daniel Lidström Dec 22 '10 at 19:03