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