What is the output of the following C code?
#includeint main(){int index;for(index=1; index<=5; index++){printf("%d", index);if (index==3)continue;}}
(A) 1245
(B) 12345
(C) 12245
(D) 12354
All Replies
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.