C Programming
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); else printf("%d %d %d %d", w, x, y, z);}

10 5 4 3
10 5 3 4
10 5 4 4
10 5 3 3
10 5 5 5

ANSWER DOWNLOAD EXAMIANS APP