home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / THIN C 2.0 / Projects / printFile / printFile.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-16  |  187 b   |  17 lines  |  [TEXT/THIN]

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     FILE    *fp;
  6.     int    c;
  7.     
  8.     fp = fopen( "My Data File", "r" );
  9.     
  10.     if ( fp != NULL )
  11.     {
  12.         while ( (c = fgetc( fp )) != EOF )
  13.             putchar( c );
  14.         
  15.         fclose( fp );
  16.     }
  17. }