home *** CD-ROM | disk | FTP | other *** search
/ Falcon 030 Power 2 / F030_POWER2.iso / ST_STE / MAGS / ICTARI08.ARJ / ictari.08 / C / PROGRAMS / READTEXT.C < prev    next >
Text File  |  1986-11-11  |  384b  |  18 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.       printf("%s\n",oneword);       /* display it on the monitor  */
  14.    } while (c != EOF);              /* repeat until EOF           */
  15.  
  16.    fclose(fp1);
  17. }
  18. əəəəəəəəəəəəəəəəəəəəəəəəəəəəə