1.

What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int i=2;_x000D_ int j = i + (1, 2, 3, 4, 5);_x000D_ printf("%d\n", j);_x000D_ return 0;_x000D_ }

A. 4
B. 7
C. 6
D. 5
Answer» C. 6


Discussion

No Comment Found