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