1.

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"); } }

A. Yes
B. No
C. Depends on the compiler
D. Depends on the compiler
E. None of these
Answer» C. Depends on the compiler


Discussion

No Comment Found

Related MCQs