C - Loops
Find the problem in this code snippet:
int count = 0;
while (count < 3) {
printf("%d", count);
}int count = 0;
while (count < 3) {
printf("%d", count);
}count is never incremented inside the loop.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions