<<<
Stream I/O Applications
Index
Stream Input Concept
>>>
3. Stream Output Concept
std::cout <<
"HELLO"
; std::cout <<
'\n'
; std::cout <<
123
;
Output stream buffer:
H
E
L
L
O
\n
1
2
3
...
...
<<<
Stream I/O Applications
Index
Stream Input Concept
>>>