1.

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

A. 2, 2, 0, 1
B. 1, 2, 1, 0
C. -2, 2, 0, 0
D. -2, 2, 0, 1
Answer» E.


Discussion

No Comment Found