

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following statements?for(i=10; i++; i<15)printf("%d ", i); |
A. | 0 11 12 13 14 |
B. | 0 11 12 13 14 15 |
C. | 10 11 12 13 |
D. | nfinite loop |
E. | one of these |
Answer» E. one of these | |