MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? int main() { int i = 2; int j = ++i + i; printf("%d n", j); } |
| A. | 6 |
| B. | 5 |
| C. | 4 |
| D. | Compile time error |
| Answer» B. 5 | |