Objective: Write a program manipulating a 2-dimensional array.
The data file on Angel holds grades for a class of 20 students. Each row represents a student and each column represents an assignment.
Create constants to represent your number of students and number of assignments.
Your program should read the data into a 2-dimensional array. Then modify a previous function to calculate the average grade for each assignment. The function prototype will be:
double Average (int g[NSTDS][NASG], int a);