Question: 1. The program should be built around an array of structures, with each structure containing information of a student's record, including ID, average quiz scores,

1. The program should be built around an array of structures, with each structure containing information of a student's record, including ID, average quiz scores, average lab performance scores, midterm score, and final score (all scores are of type int) 2. The program should have a loop that continues as long as the number of students. 3. You should achieve the functionality of the system by implementing the details of the functions whose prototypes are given below. // inserts each student's information to the struct and calculates the average score for the student void insert (struct test result *); // calculates the class average using the struct and the number of students void average_finder (struct test result *, int studentnumber); HINT: Since you don't know the student number at the beginning of your code, you can use malloc which is in "stdlib.h" library. The C library function void *malloc(size_t size) allocates the requested memory and returns a pointer to it
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
