home *** CD-ROM | disk | FTP | other *** search
- main() /* feof.c -- demonstrates feof() */
- {
- FILE *fi;
- int c, i;
-
- if((fi = fopen("test.fil","r")) == NULL) {
- printf("Can't open test.fil\n");
- exit();
- }
- while ((c = getc(fi)) != EOF)
- ; /* dummy statement */
- if(feof(fi))
- puts("At end of file");
- else
- puts("Not at end of file");
- fclose(fi);
- puts("Correct answer (if test.fil exists): At end of file");
- }