What mean by endl? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What mean by endl?

16th Dec 2016, 3:01 PM
ankul
16 Answers
+ 4
Hey Ankul, endl is manipulator operator is used to format the data display. fortunately , endl manipulator has the same effect as using the newline character "\n" example cout << "Hello Solo "<<endl; cout << " Hello Ankul" <<endl; the output is Hello Solo Hello Ankul
16th Dec 2016, 5:09 PM
Mock
Mock - avatar
+ 1
it is end of line
17th Dec 2016, 7:20 AM
nikhil vasaikar
nikhil vasaikar - avatar
+ 1
it is end of the line go to the next line
18th Dec 2016, 3:32 PM
Amirhosein Gharaati
Amirhosein Gharaati - avatar
+ 1
endl means the end of a line so that the next text to be printed is printed in a new line(\n)
3rd Jan 2017, 8:11 PM
DENNIS KIPKEMBOI
DENNIS KIPKEMBOI - avatar
0
it tells the cursor in the output terminal to go to next line it is same as \n in C
16th Dec 2016, 3:11 PM
Vijeth Belle
Vijeth Belle - avatar
0
end line
16th Dec 2016, 3:33 PM
Leonida17st
Leonida17st - avatar
0
print end line sign to the output stream, and flush the stream.
17th Dec 2016, 4:15 AM
kiwiyou
kiwiyou - avatar
0
used to end line and jump to the next line
18th Dec 2016, 4:24 AM
Rashi Dixit
Rashi Dixit - avatar
0
it means end line
18th Dec 2016, 4:36 AM
smartguy100
smartguy100 - avatar
0
endl is use d to end the line see i am starting with int main() { cout<<"hello ankul "<<endl; cout<<hello anky"; return0;} true one time with endl and other time without endl you will get your answer
18th Dec 2016, 5:56 AM
V Das
V Das - avatar
0
It means the ending of a line and the beginning of a new line
18th Dec 2016, 11:50 AM
shubham
0
For new line
19th Dec 2016, 3:31 PM
ankit singh
ankit singh - avatar
0
It makes a space
20th Dec 2016, 2:28 AM
Dmitriy
Dmitriy - avatar
0
same to\n
26th Dec 2016, 4:49 PM
abdi
0
it ends the line and moves to the next line while compiling
4th Jan 2017, 1:10 PM
Anirudh Manohar
Anirudh Manohar - avatar
0
the end of the line and you go to the next line
22nd Jan 2017, 4:52 AM
Wolf Mufasa
Wolf Mufasa - avatar