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

  1. You have probably noticed that output statements in C++ often end
  2. with endl.  endl is a special function that inserts a new line
  3. character into the stream and flushes any characters that are in
  4. the stream buffer to the ultimate consumer.  After you insert
  5. endl, any new characters that are inserted appear on a new line.
  6.