Answers for "get file size in c with open function"

C
0

c get file size

FILE *fp = fopen("example.txt", "r");
fseek(fp, 0L, SEEK_END);
int size = ftell(fp);
Posted by: Guest on March-09-2021

Code answers related to "C"

Browse Popular Code Answers by Language