KSU CS3540 Assignment 3
Modify the "grades" program so that the user initially enters the number of grades and then enters the grades. The program will output the average of the grades, the standard deviation of the grades, and the median of the grades. Please email your source code to your instructor by 9:30 am on Tuesday, January 21 st . /* Name : Dalibor Labudovic Course: CS3540 Sec. 2 Prof. : J. Higgins */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <assert.h> //function prototype int* get_data(int num_grades); // function to get grades //function to calculate average and display results float calc_average(int num_grades, int* grades); void display_average(float average); //function to clculate median and display results float calc_median(int num_grades, int* grades); void display_median(float median); //function to calculate standard deviation and display results float calc_standard_deviation(int num_grade...