1.

What is the output of this C code? #include const int a = 1, b = 2; int main() { int x = 1; switch (x) { case a: printf("yes "); case b: printf("no\n"); break; } }

A. yes no
B. yes
C. no
D. Compile time error
Answer» E.


Discussion

No Comment Found