cout is an instance of the ostream class. It sends data to our output device, usually our computer display.

Good job, we use << to send the value to cout. This is called the stream insertion operator.

We can use more than just strings. cout can accept int, double and pointer values.

Whoops. Are you sure that is what we've been using to send our values to cout?