how to create loops in c++
Answers
Answered by
0
1)The codes inside the body of loop is executed at least once. Then, only the test expression is checked.
2) If the test expression is true, the body of loop is executed. This process continues until the test expression becomes false.
3)When the test expression is false, do...while loop is terminated.
Similar questions