What is the use of FOR loop?

What is the use of FOR loop? Correct Answer To repeat the statement finite number of times

FOR LOOP iteration scheme is used to repeat the statements enclosed within a fixed number of times. There is no condition used in the for loop, but a limit is set which must be static and the loop will run only given number of times.

Related Questions