Feof - examples

Nasza ocena:

3
Wyświetleń: 651
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Feof - examples - strona 1

Fragment notatki:

Feof #include int main(void) { FILE *stream; /* open a file for reading */ stream = fopen("TEST.TXT", "r"); /* read a character from the file */ fgetc(stream); /* check for EOF */ if (feof(stream)) printf("We have reached end-of-file\n"); /* close the file */ fclose(stream); return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz