Question 5 Not yet answered Marked out of 4.00 Flug question What is the printed value of the following C code, given th
Posted: Tue Jul 05, 2022 10:27 am
Question 5 Not yet answered Marked out of 4.00 Flug question What is the printed value of the following C code, given that grade = 85. if (grade >= 90) printf("Excellent"); else if (grade >= 80) printf("Very good"); else if (grade >= 70) printf("Good"); printf("Fail"); else O a. Good Ob. Very good Oc. Excellent Od. Fail