A loop statement is given as:
for (i=0;i<10;i++)
{
Statements;
}
For how many times will the given loop statements be executed
Answers
Answered by
4
Answer:
It will be executed 10 times
Explanation:
loop will be stopped when the value of i will be 9
Similar questions