1.

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

A. 1 2 3 ... 127
B. 1 2 3 ... 255
C. 1 2 3 ... 127 128 0 1 2 3 ... infinite times
D. 1, 2, 3, 4
Answer» E.


Discussion

No Comment Found