1.

What is the output of this C code? #include int main() { switch (printf("Do")) { case 1: printf("First\n"); break; case 2: printf("Second\n"); break; default: printf("Default\n"); break; } }

A. Do
B. DoFirst
C. DoSecond
D. DoDefault
Answer» D. DoDefault


Discussion

No Comment Found