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