169
Does this exist anywhere outside of C++?
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
std::endl
is used in output streams in C++ to end the line, using the os specific line termination sequence, and flush the buffer.The later one is a performance issue in many cases, why the use of
"\n"
is considered preferred