Question: Need help with a C programming question, I am a beginner in 3rd week of class, so I would prefer if you kept the program
Need help with a C programming question, I am a beginner in 3rd week of class, so I would prefer if you kept the program as simple as possible!
The text file attached to the question is one line and simply reads:
1 2 3 4 Garbage values 100 10 20
Thank you!
The attached data file datafileWith 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 C 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
