Question: Replace the grade calculation portion of the code below with a function as outlined by the flowchart. The mark[4][5] variable should be a global variable
Replace the grade calculation portion of the code below with a function as outlined by the flowchart. The mark[4][5] variable should be a global variable while all other variables should exist only as local variables where they need to be used. The variable j from the main can be transferred to another variable (say k). The i variable does not need to be passed to the function as it will always begin at 0 anyway so you can use a different variable for it as well.

#include
int main(void) { int i=0; int j=0; int marks[4][5]; double weight[]={1, 1, 0.8333, 0.75, 0.6667}; for(j=0;j START no j 4 yes no i 5 yes input marks[jllil i 1 IS j 4 yes calculate grade output j grade no END calculate grade grade 0 IS no i 5 yes grade grade weight ilxmarksLillil 1 return grade
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
