1.

(d) #include main(){int x = 3, y = 5;if (x == 3)printf("\n%d", x);else;printf ("\n%d",y);}​

Answer»

ANSWER:

here x is 3 so condition is true

so the OUTPUT is

3



Discussion

No Comment Found