What does the "c" mean in the cout, cin, cerr and clog names?
cout
cin
cerr
clog
I would say char but I haven\
char
The "c" stands for "character" because iostreams map values to and from byte (char) representations. [Bjarne Stroustrup's C++ Style and Technique FAQ]