C - Loop Control Statements
What will be the output of the following C code?
for(int i = 1; i <= 5; i++) {
if(i % 2 == 0) continue;
printf("%d ", i);
}for(int i = 1; i <= 5; i++) {
if(i % 2 == 0) continue;
printf("%d ", i);
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions