1.

Identify the correct output of the following code:void main(){int w=10, x=5, y=3, z=3;if( (w < x ) && (y=z++) )printf("%d %d %d %d", w, x, y, z);elseprintf("%d %d %d %d", w, x, y, z);}

A. 0544
B. 0533
C. 0543
D. 0534
E. 0555
Answer» C. 0543


Discussion

No Comment Found