Computer Science, asked by raghavsinghrajput14, 3 months ago

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 CdtRaghib
4

Answer:

It will be executed 10 times

Explanation:

loop will be stopped when the value of i will be 9

Similar questions