Which of the following statement is exit controlled loop?
for loop
do-while loop
while loop
nested loop
Answers
Answered by
5
Answer
While loop
Explanation:
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
Answered by
6
Similar questions