<<<
Index
>>>
Standard Output Stream
std::ostream
std::cout;
// predefined object
cout << x;
// formatted output
cout.put( x );
// unformatted output
std::cout
pre-defined object
#include
<iostream>
attached to standard output device
I/O redirection to file or printer
<<<
Index
>>>