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