Question 5 Not yet answered Marked out of 4.00 Flug question What is the printed value of the following C code, given th
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 5 Not yet answered Marked out of 4.00 Flug question What is the printed value of the following C code, given th
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