+ 3
What is the difference between Entry Controlled and Exit Controlled loop in C?
2 Respuestas
+ 1
Read while and do-while loops..
while is entry controlled, condition is checked at for entry point..
do-while is exit controlled.. The condition checked to exit the loop..
https://www.sololearn.com/learn/C/2926/
Use the search bar for more info, you can find more similar.
0
Hello