InterviewSolution
Saved Bookmarks
| 1. |
Predict the output of following program?# include <stdio.h>int main(){int x = 10;int y = 20;x += y += 10;printf (" %d %d", x, y);return 0;}(A) 40 20(B) 40 30(C) 30 30(D) 30 40 |
| Answer» | |