home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH11 / A11164.TXT < prev    next >
Encoding:
Text File  |  1993-08-04  |  348 b   |  7 lines

  1. cerr and clog are defined in the I/O Stream Library as objects of
  2. a class derived from ostream.  Inserting characters into either
  3. stream is analogous to sending output to standard error in C. cerr
  4. and clog are both associated with the same stream, but clog is
  5. buffered while characters that are sent to cerr are flushed after
  6. each insertion.
  7.