195k views
1 vote
1) In C++ which one of the following characters when used with the cout display the output on the next line?

(A) h
(B) l
(c) n
(d) t

1 Answer

4 votes

Answer:

\\,endl are used for the next line

Step-by-step explanation:

Cout<<" "<<endl;

cout<<" " ;

-----------------------------OR------------------------------------------

cout<<" anything \\" ;

cout<<" " ;

User Keith Fitzgerald
by
5.4k points