Example & Tutorial understanding programming in easy ways.

Difference between Entry control loop and Exit control loop in C language?

Entry control loop-

Entry control loop are those in which the condition is checked at starting of loop.

- for loop and while loop is the example of Entry control loop.


Exit control loop-

Exit control loop are those in which the condition is checked at ending of loop.

-do while loop is the example of Exit control loop


Read More →