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

  1. Use the eof() member function to check if you have reached the end
  2. of a file that is attached to a stream.  In this example,
  3. source.eof() returns zero if you have not reached the end of the
  4. file that is attached to the stream object source.  When the end
  5. of the file is reached, source.eof() returns a nonzero value and
  6. the while loop exits.
  7.