Computer Science, asked by Divyclash, 6 months ago

What is the use of step statement in for loop?​

Answers

Answered by Roshi06
13

Explanation:

Once the loop starts and all statements in the loop have executed, step is added to counter. At this point, either the statements in the loop execute again (based on the same test that caused the loop to execute initially), or the loop is exited and execution continues with the statement following the Next statement.

Answered by webstararijit
3

Answer:

Once the loop starts and all statements in the loop have executed, step is added to counter. At this point, either the statements in the loop execute again (based on the same test that caused the loop to execute initially), or the loop is exited and execution continues with the statement following the Next statement.

Similar questions