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