Computer Science, asked by basi00, 2 months ago

examples for entry control loop​

Answers

Answered by Shreya762133
3
  • for loop and while loop are the examples of Entry Controlled Loop. do while loop is the example of Exit controlled loop. Entry Controlled Loops are used when checking of test condition is mandatory before executing loop body.

HOPE SO IT HELPS U

DO FOLLOW ME

Answered by vedvatikatara
0

Answer:

While loop..

int count=100;

while(count<50)

printf("%d",count++);

For loop..

int count;

for(count=100; count<50; count++)

printf("%d",count);

Similar questions