Saved Bookmarks
| 1. |
(d) #include main(){int x = 3, y = 5;if (x == 3)printf("\n%d", x);else;printf ("\n%d",y);} |
|
Answer» here x is 3 so condition is true so the OUTPUT is 3 |
|