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