Top

Discussion

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: B

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment