Ics 2175 Introduction To Computer Programming Assignment I
Ics 2175 Introduction To Computer Programming Assignment I
ASSIGNMENT I
ENM 221- 0083/2023
int main() {
float scores[STUDENTS][TESTS];
float unitScores[UNITS][STUDENTS][TESTS];
// Input and compute averages for 3 tests
inputScores(scores);
computeAndDisplayAverages(scores);
return 0;
}
This C program first handles the scores for three tests and then extends to six different units,
computing and displaying the average scores for each student.