1.

Guess the output of the program ? #include<stdio.h> int main() { int a=0, b=1, c=2; *((a+1 == 1) ? &b : &a) = a ? b : c; printf("%d, %d, %d\n", a, b, c); return 0; }

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


Discussion

No Comment Found