home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / FEOF.C < prev    next >
Encoding:
Text File  |  1985-01-23  |  389 b   |  19 lines

  1. main()    /* feof.c -- demonstrates feof() */
  2. {
  3.     FILE *fi;
  4.     int c, i;
  5.  
  6.     if((fi = fopen("test.fil","r")) == NULL) {
  7.         printf("Can't open test.fil\n");
  8.         exit();
  9.     }
  10.     while ((c = getc(fi)) != EOF)
  11.         ;    /* dummy statement */
  12.     if(feof(fi))
  13.         puts("At end of file");
  14.     else
  15.         puts("Not at end of file");
  16.     fclose(fi);
  17.     puts("Correct answer (if test.fil exists): At end of file");
  18. }
  19.