+ 2
What does cout mean?
5 Answers
+ 6
output in C languages
+ 3
character stream out I believe
Edit: The 'console' is a character device...I'm linking the original source in another answer.
+ 3
console output or sometimes characters output
+ 3
http://www.stroustrup.com/bs_faq2.html#cout
"'cout' is pronounced 'see-out'. The 'c' stands for 'character' because iostreams map values to and from byte (char) representations"
From here, note 'wcout' (wide char out), etc
http://stackoverflow.com/a/2262238/3981745
Proving iostreams (they can be redirected):
http://stackoverflow.com/questions/10150468/how-to-redirect-cin-and-cout-to-files
+ 2
cout: console output cin: console input, cout is used to print output on console