Cout = console output oder character output?

Hallo,
in Saumwebers „Programmierhandbuch“ wird gesagt, dass das „c“ von „cout“ für „character“ steht, also zusammen „character output“. Andere schreiben aber, es hieße „console output“.
Was stimmt nun? Geht beides?

Howdy,

in Saumwebers „Programmierhandbuch“ wird gesagt, dass das „c“
von „cout“ für „character“ steht, also zusammen „character
output“. Andere schreiben aber, es hieße „console output“.
Was stimmt nun? Geht beides?

es stimmt weder das eine noch das andere.

Stroustrup definiert cout einfach nur als „standard output“.

Der C++ Standard sagt „The object cout controls output to a stream buffer associated with the object stdout, declared in (27.8.2).“ (also faktisch dem stdout der Programmiersprache C), mithin könnte man als ernsthafteren Kandidaten die Version c=c und out=output sehen, definiert ist das aber nirgendwo.

Gruss
norsemanna

Der C++ Standard sagt „The object cout controls output to a
stream buffer associated with the object stdout, declared in
(27.8.2).“

[…]

c=c und out=output sehen, definiert ist
das aber nirgendwo.

Danke für die Antwort.
Also ich denke als Eselsbrücke kann man alles nehmen.
control output
console output
character output
C output

Hauptsache man weiß, was es bewirkt.