home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / ctutor2.zip / READGOOD.C < prev    next >
Text File  |  1989-11-10  |  618b  |  42 lines

  1.                                         /* Chapter 10 - Program 5 */
  2. #include "stdio.h"
  3.  
  4. void main()
  5. {
  6. FILE *fp1;
  7. char oneword[100];
  8. char c;
  9.  
  10.    fp1 = fopen("TENLINES.TXT","r");
  11.  
  12.    do {
  13.       c = fscanf(fp1,"%s",oneword); /* got one word from the file */
  14.       if (c != EOF)
  15.          printf("%s\n",oneword);    /* display it on the monitor  */
  16.    } while (c != EOF);              /* repeat until EOF           */
  17.  
  18.    fclose(fp1);
  19. }
  20.  
  21.  
  22.  
  23. /* Result of execution
  24.  
  25. This
  26. is
  27. an
  28. example
  29. line.
  30. Line
  31. number
  32. 1
  33. This
  34. is
  35.  ... (Many other lines.) ...
  36. Additional
  37. lines.
  38. Additional
  39. lines.
  40.  
  41. */
  42.