M
Q. What will be the output of the following C code?
#include <stdio.h> int main() { unsigned int n = 25; signed char ch = -25; if (n > ch) { printf("Yes\n"); } else if (n < ch) { printf("No\n"); } }
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. Single Line Comment // is also called.?
Q. Which is the right way to declare constant in C?
Q. What will be the output of the following code snippet?
Q. What is an example of iteration in C?
Q. What is the first stage of compilation of a C program?
Q. Which statement is true about the given code ?
Q. Which of these assignments is invalid?
Q. What will be the output of the following code snippet?
Q. What will be the output of the following C code?
Q. Choose a correct statement about C file operation program?
Discusssion
Login to discuss.