Question: include comments in code please (8 points) Problem 4: Write a C program to calculate the minimum and maximum of n grades entered by the
(8 points) Problem 4: Write a C program to calculate the minimum and maximum of n grades entered by the user. The program uses a function void g(int n, int min, int max) to calculate the requirements above Assignment #6 COP2271C: Introduction to Computation and Programming Points: 20/20 and also prints the grades in reverse order. The function should utilize the concepts of recursion. Below is an example of a single run of the program: Hint: in your main function create two variables min and max. Initialize min variable with a big number (e.g. 10000) and initialize max number with a small number (e.g.-10000). Call you function g with initialized min and max parameters from the main function, Microsoft Visual Studio Debug Console Enter the number of grades: 4 Enter grade for course 4: 67 Enter grade for course 3: 89 Enter grade for course 2: 100 Enter grade for course 1: 54 Minimum = 54 Maximum = 100 54 100 89 67
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
