what is loop in c++ ? how to define it
Answers
Answered by
2
1.Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.
2. For loop. Execute a sequence of statements multiple times and abbreviates the code that manages the loop variable.
Similar questions