+ 1
So cout is what makes whatever you type pop up on your screen aka "the output" ?
3 Respuestas
+ 2
Basically, yes. It's standart output, mostly some console on your screen.
+ 2
Yes, for C languages
0
As you will hopefully learn later, cout is an object that has a lot of things going on behind implementation; for example, taking your character data and passing it off (by an address in memory) to the default output object managed by your OS I/O stream (hence <iosteream>).