+ 4
Can anybody tell me what does "endl" means in C++?
5 Answers
+ 6
Thanks
+ 4
"endl" means endline . It work same as " \n".
+ 3
End line
See, after end line I started writing in new line, so endl moves cursors to new line, same as '\n'
Between those 2 there are technical differences which you can read in big c++ book about streams
+ 1
endl means end line, it is a part of the iostream and is equal to "\n".
0
Endl is nothing but endline which is similar to \n .