First page Back Continue Last page Graphics
cout
<< is the insertion operator.
Is overloaded for various standard types.
Can be overloaded for user defined classes.
x << 3; // IS THE LEFT SHIFT operator. Determined by the type of the left hand side.
cout << count // expression returns the cout object. (Allows concatination of inserstions. cout << a << b << c << endl; Fig 17.4