Question: #include #include int main ( int argc, char * argv [ ] ) { FILE * fd; unsigned char ch; int fileSize = - 1

#include
#include
int main(int argc, char *argv[]){
FILE *fd;
unsigned char ch;
int fileSize=-1;
fd = fopen(argv[1],"r");
do{
ch=getc(fd); //0xFF
fileSize++;
sleep(1);
} while( ch != EOF); //ch =0x FF, EOF=0x FFFF FFFF
printf("Size of %s is %d
", argv[1], fileSize);
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!