File size
Code: Select all
int File_Size;
FILE *fInput;
fseek(fInput, 0, SEEK_END);
File_Size = ftell(fInput);
fseek(fInput, 0, SEEK_SET);
Code: Select all
int File_Size;
FILE *fInput;
fseek(fInput, 0, SEEK_END);
File_Size = ftell(fInput);
fseek(fInput, 0, SEEK_SET);