Go to main content
Oracle® Developer Studio 12.5: C++ User's Guide

Exit Print View

Updated: July 2016
 
 

13.1 Predefined iostreams

There are four predefined iostreams:

  • cin, connected to standard input

  • cout, connected to standard output

  • cerr, connected to standard error

  • clog, connected to standard error

The predefined iostreams are fully buffered, except for cerr. See Output Using iostream and Input Using iostream.