0
Why cout is used?
7 Antworten
+ 1
cout = console out
0
cout prints to the user, so the user can see a default sentence of the program, the "cin" is for the user to input a character or a number depending on its purpose
0
I guess the c is for console. So you get console input buffer 《cin》and console output buffer《cout》. Note that there is one more output buffer for error messages《cerr》.
0
It's for printing text, so that the user can see it
- 1
its simple....
cout→its c out...
means for output...
cout if for printing output
- 1
it is an output function used to display any kind of message or value
syntax
cout<<"message";
cin>>variable name;
- 2
it is used to get output on the terminal window(output window)