......... loop is also know as exit control loop
Answers
Answered by
1
Answer:
while loop in C is similar to the while loop except that the condition is always executed after the body of a loop. It is also called an exit-controlled loop. ... In the do-while loop, the body of a loop is always executed at least once. After the body is executed, then it checks the condition
Answered by
3
Answer:
DEFINITION:In an exit controlled loop, a condition is checked after executing the body of a loop. It is also called as a post-checking loop.
Do-While loop in C
A do...while loop in C is similar to the while loop except that the condition is always executed after the body of a loop. It is also called an exit-controlled loop.
I HOPE THIS WILL BE HELPFUL FOR UH.. ❤☺❤
Similar questions