What are iteration statements?
Answers
Answered by
3
Answer:
Iteration statements also called as looping statements execute a set of statements repeatedly until and unless the given condition becomes false.
Ex : for(i=0;i<5;i++)
Answered by
5
Iteration statements cause statements (or compound
statements) to be executed zero or more times, subject to some loop-termination criteria. When these statements are compound statements, they are executed in order, except when either the break statement or the continue statement is encountered.
Hope this helps you and please mark me as brainliest if you are satisfied with the answer
Similar questions