There is cerr, but it's not the same as cout. It's designed for output error.
As far as the standard streams go, there are different ways to access them (for example, using stdout/stderr like file handles to fwrite), but there are only 2 of them at the end of the day:
stdout - Designed for standard output. Program status, useful data, so on.
stderr - Designed for output describing errors. Often also used for debugging data.
Sometimes actual output will be done on stdout and progress or debugging related output on stderr. That way, the user can pipe stdout into a file and leave stderr going to the console. This allows them to both capture desired information and see progress and whatnot.