Question
Replace the grade calculation portion of Lab Assignment #4 with a function as outlined by the attached flowchart. The mark[4][5] variable should be a global
Replace the grade calculation portion of Lab Assignment #4 with a function as outlined by the attached 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started