1.

What will be the output of the following code?#includevoid main(){int s=0;while(s++<10){if(s<4 && s<9)continue;printf("%dt", s);}}

A. 2 3 4 5 6 7 8 9
B. 2 3 10
C. 5 6 7 8 9 10
D. 5 6 7 8 9
E. one of these
Answer» D. 5 6 7 8 9


Discussion

No Comment Found