

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 10, m = 10; switch (n) { case n*m: printf("True "); case n-m: printf("False n"); break; } } |
A. | 10 |
B. | Compilation Error |
C. | 10 |
D. | True |
E. | False |
Answer» C. 10 | |