K
Q. What will be the output of the following C code?
#include <stdio.h> int main() { int marks = 43; if (marks > 90) printf("Grade : A "); else if (marks > 75) printf("Grade : B "); else if (marks > 60) printf("Grade : C "); if (marks > 40) printf("Grade : D "); else printf("Fail "); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the output of this program?
Q. What will be the output of the following code snippet?
Q. Which is Bit Toggling operator below.?
Q. Which of the following ways are correct to include header file in C program?
Q. What will be the output of this code?
Q. If we do not explicitly assign values to enum names, the compiler by default assigns values to ?
Q. What is the output of the following C program?
Discusssion
Login to discuss.