Question: Consider the following structure definition. Write a C/C++ function that takes an array of struct student with its size and prints the IDs of the

Consider the following structure definition. Write a C/C++ function that takes an array of struct student with its size and prints the IDs of the students who scored around the average score, let say + and - 5 points around the average. The lowest possible mark is O and the highest possible mark is 100. struct student{ int ID; int score; }; void printaroundavg (struct student a[], int size) {
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
