Preguntas etiquetadas con feof

5
¿Por qué siempre está mal "while (! Feof (file))"?
Últimamente he visto personas tratando de leer archivos como este en muchas publicaciones: #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { char *path = "stdin"; FILE *fp = argc > 1 ? fopen(path=argv[1], "r") : stdin; if( fp == NULL ) { perror(path); return EXIT_FAILURE; } while( !feof(fp) …
574 c  file  while-loop  eof  feof 
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.