Question: DataFileWithGarbage is 1 2 3 4 Garbage values 100 10 20 The attached data file dataFile With Garbage.txt was created for storing integers but someone
DataFileWithGarbage is
1 2 3 4 Garbage values 100 10 20
The attached data file dataFile With Garbage.txt was created for storing integers but someone accidentally inserted some garbage values to the file. Write a C program to calculate the sum of all integers from the file while skipping all garbage values. Submit the program. Hints: Make use the return value of fscanf function to check if it gets an integer, hits a garbage value, or reaches the end of file (EOF) or not. Note that if a garbage value is hit, the fscanf fails to read it in. In this case, we need to skip a garbage. Try fscanf(filePointer, "%s", garbage); to get rid of a garbage word so that the file pointer can move forward
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
