What is the purpose of step value in for next statement?
Answers
Answered by
10
Explanation:
next statement is an iterative, incremental loop statement used to repeat a sequence of statements for a specific number of occurrences. ... If the loop-ending condition is not met, the loop variable is incremented by 1 or by the value of the step expression and program control transfers back to the beginning of the loop.
Answered by
4
Answer:
next statement is an iterative, incremental loop statement used to repeat a sequence of statements for a specific number of occurrences. ... If the loop-ending condition is not met, the loop variable is incremented by 1 or by the value of the step expression and program control transfers back to the beginning of the loop.
Similar questions