home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX10021.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  183 b   |  14 lines

  1. // ex10021.cpp
  2. // Testing end of file
  3. #include <fstream.h>
  4.  
  5. main()
  6. {
  7.     ifstream tfile("test.dat");
  8.     while (!tfile.eof())    {
  9.         char ch;
  10.         tfile.get(ch);
  11.         cout << ch;
  12.     }
  13. }
  14.