What are the unique features of FOR loop?
Answers
Answered by
1
Answer:
A FOR LOOP is a special loop that is used when a definite number of loop iterations is required. Although a while loop can also be used to meet this requirement
Answered by
1
Explanation:
Syntax :
-The Initialization expression.
-The conditional expression.
-The increment /decrement expression.
-The body of the loop.
Similar questions