How many times will the following statement be executed?void main() { int a; a=100; while(a>=100) { cout<< hello ; --a; } }
Reveal answer
Fill a bubble to check yourself
How many times will the following statement be executed?void main() { int a; a=100; while(a>=100) { cout<< hello ; --a; } }