1.

What will be the output of given program?#includevoid main(){int i=1, j=-1;if((printf("%d", i)) < (printf("%d", j)))printf("%d", i);elseprintf("%d", j);}

A. -1 1
B. -1 -1
C.
D. 1
Answer» B. -1 -1


Discussion

No Comment Found