Question: (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

 (8 points) Problem 4: Write a C program to calculate 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!