“ukuran file c” Kode Jawaban

C Dapatkan ukuran file

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

ukuran file 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

Jawaban yang mirip dengan “ukuran file c”

Pertanyaan yang mirip dengan “ukuran file c”

Lebih banyak jawaban terkait untuk “ukuran file c” di C

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya