1.

What is the output of this C code? #include int main() { float f = 1; switch (f) { case 1.0: printf("yes\n"); break; default: printf("default\n"); } }

A. yes
B. yes default
C. Undefined behaviour
D. Compile time error
Answer» E.


Discussion

No Comment Found