What is FOR...NEXT Statement?
Syntax
Answers
Answered by
6
Answer:
FOR...NEXT Statement is used to repeat a set of statement (s) a fixed number of times. It uses a counter to count the number of executions.
Explanation:
For counter = Initial value to find value.
VB statement (s)
Answered by
2
FOR ... NEXT IS A LOOPING STATEMENT WHICH HELPS TO LOOP THE PROGRAM FOR A FIXED NUMBER OF TIMES.
SYNTAX:
FOR (variable)= loop
NEXT(variable)
Similar questions