Question: #include 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


#include
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 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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
