+ 2
What is cout
please tell me
5 Respostas
+ 7
Cnsole-OUTput
+ 6
it is like "print" , example:
cout << "cool " << endl;
the output will be "cool"
another example:
int x = 1;
cout << x << endl;
the output will be 1 cause x = 1
+ 1
it is used for printing text to the console.
+ 1
It is the printing function of C++
0
output or what the user see