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