int x = 10;
do {
x--;
} while (x < 10);
int x = 10;
do {
x--;
} while (x < 10);
How many times the loop will be executed?
Reveal answer
Fill a bubble to check yourself
int x = 10;
do {
x--;
} while (x < 10);
How many times the loop will be executed?