+ 1
What is cout
4 Antworten
+ 9
cout means console output..
if we write ..
cout<<"hello";
then it prints hello on screen
+ 5
cout is an Object of type output stream.
It stands for, 'console output' (what the others said).
The << operator is overloaded by a function that will print to the console.
+ 1
thè command to output something on screen:
cout << "foo";
outputs foo in command line
0
cout << "hello!"
=print hello on your screen.