home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / text / c_tutor / readgood.c < prev    next >
C/C++ Source or Header  |  1995-02-27  |  358b  |  19 lines

  1. #include "stdio.h"
  2.  
  3. main()
  4. {
  5. FILE *fp1;
  6. char oneword[100];
  7. int c;
  8.  
  9.    fp1 = fopen("TENLINES.TXT","r");
  10.  
  11.    do {
  12.       c = fscanf(fp1,"%s",oneword); /* got one word from the file */
  13.       if (c != EOF)
  14.          printf("%s\n",oneword);    /* display it on the monitor  */
  15.    } while (c != EOF);              /* repeat until EOF           */
  16.  
  17.    fclose(fp1);
  18. }
  19.