MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include int main() { int x = 2, y = 1; x *= x + y; printf("%d\n", x); return 0; } |
| A. | 5 |
| B. | 6 |
| C. | Undefined behaviour |
| D. | Compile time error |
| Answer» C. Undefined behaviour | |