MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include<stdio.h> int main() { int i=2; int j = i + (1, 2, 3, 4, 5); printf("%d n", j); return 0; } |
| A. | 4 |
| B. | 7 |
| C. | 6 |
| D. | 5 |
| Answer» C. 6 | |