Question: How would I code this in C programming? NOT C++ Just C programming. Also, if possible, I would appreciate a screenshot of the code with
How would I code this in C programming? NOT C++ Just C programming. Also, if possible, I would appreciate a screenshot of the code with how it looks compiled to make things easier and to copy and paste the code text when you reply here. Please complete all of the tasks listed in the bullet points. Thank you.

Goals 1. Create a program that calculates the highest, lowest, and average grade using an array Tasks Write code that asks the user to enter 5 grades, stores them in an array, and calculates the following statistics on the grade: Use #define to set the number of grades to 5 Ask the user to enter a grade. Store each grade in an array. Repeat 5 times. Scan through the array of grades and find the highest and lowest of all the grades. Display to the user. Scan through the array of grades and find the *median grade (the grade right in the middle if they're ordered lowest to highest Display to the user Make sure that your code compiles and runs successfully Submit your main.c C code via Blackboard An example run of the program is shown in the table below Enter a grade: 100 Enter a grade: 80 Enter a grade: 95 Enter a grade 60 Enter a grade: 90 Highest grade 100 Lowest grade 60 Median grade 90
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
