Page 1 of 1

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
by answerhappygod
Question 5 Not Yet Answered Marked Out Of 4 00 Flug Question What Is The Printed Value Of The Following C Code Given Th 1
Question 5 Not Yet Answered Marked Out Of 4 00 Flug Question What Is The Printed Value Of The Following C Code Given Th 1 (45.35 KiB) Viewed 14 times
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