First page Back Continue Last page Graphics
cout << "Hello World!" << endl;
<< is a binary operator
left-associative
- uses as much as it can from the left and as little as it can from the right.
endl is a manipulator which generates an end of line character.
cout is the stream for the standard output (normally the screen).
more later