1.

What is the output of the following C code? #include int main() { int index; for(index=1; index<=5; index++) { printf("%d", index); if (index==3) continue; } }

A. 1245
B. 12345
C. 12245
D. 12354
Answer» C. 12245


Discussion

No Comment Found

Related MCQs