C - Loops
What is the output of this C code?
int i = 1;
while (i <= 3) {
printf("%d ", i);
i += 2;
}int i = 1;
while (i <= 3) {
printf("%d ", i);
i += 2;
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions