0 votes
in C Plus Plus by
What are entry control and exit control loops?

1 Answer

0 votes
by

C support only 2 loops:  

  1. Entry Control: This loop is categorized in 2 part 
    a. while loop 
    b. for loop
  2. Exit control: In this category, there is one type of loop known as 
    a. do while loop.
...