1.

What will be the output of the program?_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int x=1, y=1;_x000D_ for(; y; printf("%d %d\n", x, y))_x000D_ {_x000D_ y = x++ <= 5;_x000D_ }_x000D_ printf("\n");_x000D_ return 0;_x000D_ }

A. 2 13 14 15 16 17 0
B. 2 13 14 15 16 1
C. 2 13 14 15 1
D. 2 23 34 45 5
Answer» B. 2 13 14 15 16 1


Discussion

No Comment Found