What does cout mean? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What does cout mean?

20th Dec 2016, 1:27 PM
Edwin Pratt
Edwin Pratt - avatar
5 Answers
+ 6
output in C languages
20th Dec 2016, 1:29 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 3
character stream out I believe Edit: The 'console' is a character device...I'm linking the original source in another answer.
20th Dec 2016, 1:29 PM
Kirk Schafer
Kirk Schafer - avatar
+ 3
console output or sometimes characters output
20th Dec 2016, 2:10 PM
Richard Dan
Richard Dan - avatar
+ 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
20th Dec 2016, 2:19 PM
Kirk Schafer
Kirk Schafer - avatar
+ 2
cout: console output cin: console input, cout is used to print output on console
20th Dec 2016, 1:33 PM
Ravi Kumar
Ravi Kumar - avatar