Question: Write a program to compute average grades for a course. The course records are in a single file and are organized according to the following
Write a program to compute average grades for a course. The course records are in a single file and are organized according to the following format: Each line contains a students first name, then one space, then the students last name, then one space, then some number of quiz scores that, if they exist, are separated by one space. Each student will have zero to ten scores, and each score is an integer not greater than 100. Your program will read data from this file and write its output to a second file. The data in the output file will be nearly the same as the data in the input file except that you will print the names as last_name, first_name and there will be one additional number at the end of each line: the average of the students ten quiz scores.
The output file must be formatted such that first and last names appear together in a left justified column that is 20 characters wide where the last name comes first, then a comma and a space and then the first name. Use your read string function to read each name separately and then put them together into a larger correctly formatted string before trying to output them. Each quiz score should be listed in a right justified column that is 4 characters wide, and the average should appear in its own right justified column that is 10 characters wide.
Note that if a student has fewer than 10 scores, the average is still the sum of the quiz scores divided by 10; these students are assumed to have missed one or more of the quizzes. The output file should contain a line (or lines) at the beginning of the file providing appropriate column headings. Use formatting statements to make the layout clean and easy to read.
After writing the required data to an output file, your program will close all files and then copy the contents of the output file to the input file by reopening the input file for writing and opening the output file for reading. Thus, the net effect of the program is to change the contents of the input file. Do not attempt to copy the output file to the input file until you have thoroughly tested and debugged the rest of your program to ensure that it operates correctly.
You should use at least two functions that include FILE pointers in their parameter lists. (These functions may have other parameters as well.) The input file should be called quiz.txt and the output file should be called average.txt. Some test cases you may want to consider are the following:
What if the input file is empty?
What if a student does not have any quiz grades at all?
What if multiple students in a row dont have any quiz grades?
What if there are extra new lines at the end of the file?
What if the last record in the file does not have a new line after it but rather ends with end of file?
One very useful strategy is to write a function that, given a FILE pointer, will extract out exactly one persons full name and write it to the output file. Write another function that given a FILE pointer will extract out one persons quiz scores and list them in the output file along with the average score. Then use these two functions in a loop that will keep doing this until there is no more data in the input file.
The following criteria will be used to grade your submission:
Does the code compile?
Does the code function according to the problem specification?
Is there an appropriate comments section at the beginning of each file (similar to the one shown above)?
Is the code readable and well-formatted? Is it well-documented and clear?
Do you have pre and post conditions for each of your functions?
******* Program should be in C please *********
Thanks
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
