Computer Science, asked by imparth2006, 7 months ago

How many times the loop
will be executed:
int B = 100;
while (B >=10)
{
// statements
B/=10;
}​

Answers

Answered by pratyushkumar0202200
1

Answer:

10 loop will be executed

Similar questions