0
Hello gusy can you tell me (one statment with one stream insertion operator) and ( using one statment with 4 stream operators)
Tell the answer in the brackets using a little example pls...
5 Answers
0
for example
to Print 1 to 5
1, one statement with one stream
Cout<< " 1 2 3 4 5 \n";
2, one statement with 4 stream
cout<<" 1 ";
cout<<" 2 ";
cout<<" 3 ";
cout<<" 4 ";
cout<<" 5 "<<endl;
0
So can u tell me about four statment
0
cout<<"1"<<"2"<<"3"<<"4";
0
is The word statment describ this << symbole pls tell me
0
<< this is insertion operator.