A loop statement is given as:
for(i=20;i>20;-)
{
statement
}
How many times will the following loop executed?
1. 2
2. 3
3. 1
4. 0
help fast plz
Answers
Answered by
1
As i is 20 and the condition says that it will run only if i is below 20, so the loop will run 0 times.
Similar questions