C Tutorial/stdio.h/feof

Материал из C\C++ эксперт
Версия от 13:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

feof

Item Value Header

  1. include <stdio.h>

Declaration int feof(FILE *stream); Function determines whether the end of the file has been reached. Return A nonzero value: if the file pointer is at the end of the file. zero: otherwise.


<source lang="cpp">#include <stdio.h>

 #include <stdlib.h>
 int main(void){
    FILE *fp;
    if((fp=fopen("test", "rb"))==NULL) {
       printf("Cannot open file.\n");
       exit(1);
    }
    while(!feof(fp)) {
       char ch = getc(fp);
       printf("%c",ch);
    }
    fclose(fp);
 }</source>