C - Loops
Find the error in this code snippet:
int count = 1;
do
printf("%d", count);
count++;
while (count <= 3);int count = 1;
do
printf("%d", count);
count++;
while (count <= 3);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions