| | | | | |

Predefined Objects cin, cout, cerr, clog

  • Predefined istream object: cin
  • Predifined ostream objects: cout, cerr, clog
  • Buffered ostreams: cout, clog
  • Tied stream pair: cin, cout
  • cin.tie(&cout);               // in file iostream
    cerr.setf(ios_base::unitbuf); // in file iostream
    

| | Top of Page | 11. The C++ I/O System - 14 of 19