“sizeof archivo c” Código de respuesta

c Obtener el tamaño del archivo

FILE *fp = fopen("example.txt", "r");
fseek(fp, 0L, SEEK_END);
int size = ftell(fp);
Clever Cowfish

sizeof archivo c

FILE *fp = fopen("file.txt", "w+");
fseek(fp,0,SEEK_END);
int size = ftell(fp) + 1; // we have to account for the 0th position in the file
hi there

Respuestas similares a “sizeof archivo c”

Preguntas similares a “sizeof archivo c”

Más respuestas relacionadas con “sizeof archivo c” en C

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código