

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 25; char ch = -25; if (n < ch) { printf("Yes n"); } else { printf("No n"); } } |
A. | 25 |
B. | Yes |
C. | No |
D. | Depends on the compiler |
E. | Depends on the standard |
Answer» D. Depends on the compiler | |