1.

Trace the output.void main(){ int x=10,y=20; x=!x; y=!y; printf("x=%d , y=%d",x,y); }

A. x= -10 , y= -20;
B. x= 10 , y= 20;
C. x=0 , y=0;
D. None of the above.
Answer» D. None of the above.


Discussion

No Comment Found