Reference no: EM132100012
Please Read Entire Post.
Modify the below code so that it uses custom functions to add grades to the array, print the grades entered, calculate the average grade (arithmetic mean, not letter grade), and report the highest and lowest grade entered.
This version of the program does not need to use heap memory, though you are welcome to do so.
The program should allow the user to indicate when he or she is done entering grades (since the user may not have grades to fill the whole array). When the user is done entering grades, the program should print out the grades entered by the user.
The program should also display the average grade, highest grade, and lowest grade.
#include "stdio.h"
int main(void)
{
//initialize array
int arr[100];
//initialize variables
int i=0, j=0, n=0;
//infinite loop which will stop when user enters -1
while(n != -1)
{
printf("Enter percentage grade(0-100). Enter -1 to stop: ");
//read grade
scanf("%d",&n);
//if user entered grade is not -1
if(n != -1)
{
//save it to array
arr[i++] = n;
}
//if user entered -1, then exit this loop
else
{
break;
}
}
printf("\n\nThe grades are: \n");
//loop which will iterate till no:of user entered grades
for(j=0; j
{
//print the grade
printf("%d ",arr[j]);
}
return 0;
}