MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include #define max(a) a int main() { int x = 1; switch (x) { case max(2): printf("yes "); case max(1): printf("no "); break; } } |
| A. | yes no |
| B. | yes |
| C. | no |
| D. | Compile time error |
| Answer» D. Compile time error | |