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; } }
Answer: B
No answer description available for this question.