1.

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

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