1.

What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int a=0, b=1, c=3;_x000D_ *((a) ? &b : &a) = a ? b : c;_x000D_ printf("%d, %d, %d\n", a, b, c);_x000D_ return 0;_x000D_ }

A. 0, 1, 3
B. 1, 2, 3
C. 3, 1, 3
D. 1, 3, 1
Answer» D. 1, 3, 1


Discussion

No Comment Found