Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

In C language do not use <conio.h> or pointer! Write a C program that uses a set

ID: 3619740 • Letter: I

Question

In C language do not use <conio.h> or pointer! Write a C program that uses a set of integer exam values for three student stored in a double - subscripted array named Grades ( STUDENTS ] [ EXAMS ] which contains the following data: Student Exam 0 Exam 1 Exam 2 Exam3 0 77 68 86 73 1 96 87 89 78 2 70 90 86 81 and calls two functions maximum, and average. The first one calculates the maximum in each of the tests and returns it to the main ( ) function. The second one calculates the average grade for each student and returns it to the main ( ) function. The output will have the following format: For test 0 the highest grade was: 96 For test 1 the highest grade was: 90 For test 2 the highest grade was: 89 For test 3 the highest grade was: 81 The average grade for student 0 is 76.00 The average grade for student 1 is 87.50 The average grade for student 2 is 81.75

Explanation / Answer

#include void maximum(int marks[3][4],int *maxmarks) { int i,j,max; for(i=0;i