MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include void main() { int a = 3; int b = ++a + a++ + --a; printf("Value of b is %d", b); } |
| A. | Value of x is 12 |
| B. | Value of x is 13 |
| C. | Value of x is 10 |
| D. | Undefined behaviour |
| Answer» E. | |