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

  1. // ex10022.cpp
  2. // The seekg member function
  3. #include <fstream.h>
  4.  
  5. main()
  6. {
  7.     ifstream tfile("test.dat");
  8.     tfile.seekg(5);        // seek five characters in
  9.     while (!tfile.eof())    {
  10.         char ch;
  11.         tfile.get(ch);
  12.         cout << ch;
  13.     }
  14. }
  15.