First page Back Continue Last page Graphics
std::cout
a qualified name which uses the :: operator
the left operand is the namespace name
the right of the operand is a name that is defined in the scope named on the left.
Use the using namespace to remove the need for this operator in cout, cin, endl, and other std manipulators and variables.
type of cout is ostream.