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?

link|improve this question

3  
Possible duplicate: stackoverflow.com/questions/213907/c-stdendl-vs-n – Bill Cheatham Dec 22 '10 at 18:57
There's rarely any practical difference. Except that endl will 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
4  
Use std::endl if this has any interaction with the user. But prefer '\n' if you are just building an offline file or something. – Loki Astari Dec 22 '10 at 19:07
feedback

closed as exact duplicate by Shaggy Frog, Loki Astari, John Dibling, cdhowie, dmckee Dec 24 '10 at 3:51

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.

1 Answer

up vote 13 down vote accepted

Yes, they're different.

"\n" is just a string of length 1 that gets appended to stdout.

std::endl, instead, is an object that will cause to append the newline character ("\n") AND to flush stdout buffer. For this reason it will take more processing.

link|improve this answer
1  
Actually, it can be different, but it doesn't have to be. Most consoles are line buffered which means they're going to get flushed on the newline whether or not you explicit flush on your own, – Billy ONeal Dec 22 '10 at 19:04
3  
ostream has its own buffer too, so the console being line buffered isn't the only factor here, I think. If ostream doesn't flush after it placed the '\n' into its buffer, the console won't ever see the newline. – Johannes Schaub - litb Dec 22 '10 at 19:21
1  
[Nitpicking Mode On] '\n' is a char and "\n" is a string of length 1. Writing a char to the buffer could be faster in some cases. [Nitpicking Off] – watson1180 Dec 22 '10 at 19:45
2  
In my last job, an unnamed number of years ago, we had an occasion (writing a large text file) in which changing from endl for each line to "\n" for them made a very noticeable difference -- from a ~2s pause when saving down to no user-detectable pause when saving. – Caleb Huitt - cjhuitt Dec 22 '10 at 20:47
1  
@BillyOneal: No. As far as C++ is concerned the underlying stream does not exist. – Lightness Races in Orbit Feb 11 '11 at 9:55
show 6 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.