+ 1
What is the function of cout
function
6 Respuestas
+ 1
It is the output!
Example
int main()
{
cout << "Hello World!";
return 0;
}
//Output = Hello world!
// Hello world! (appears on the screen!)
Break up the word it is actually c out as you get c in
cout= output
cin = input
0
yep what about variables
0
cout means console output.
It helps to display the text and output of the program to the screen.
0
It helps to return or show the value on the monitor