/* This is a second example of reading words from a file */

#include <stdio.h>

void main()
{
FILE *fp1;
char oneword[100];
char c;

   fp1 = fopen("TENLINES.TXT","r");

   do {
      c = fscanf(fp1,"%s",oneword); /* got one word from the file */
      if (c != EOF)
         printf("%s\n",oneword);    /* display it on the monitor  */
   } while (c != EOF);              /* repeat until EOF           */

   fclose(fp1);
}
READGOOD.C
Κατεβάστε το πρόγραμμα στον υπολογιστή σας

READTEXT.C