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»


Discussion

No Comment Found

Related InterviewSolutions