what is the difference between entry control and exit
control statement?

Answer Posted / fernando torres 9

Entry control is otherwise called as WHILE loop,because the
while loop checks the condition at first,and then only
execute the following instructions.

Exit control is also called as DO WHILE loop,because the do
while loop checks the condition at last

Entry Comtrolled will check the Condition at First and
doesn't execute if it is False.
Exit Comtrolled will check the Condition at Last and at
least once the statement will execute though it is False .

In Entry controlled loop the test condition is checked
first and if that condition is true than the block of
statement in the loop body will be executed while in exit
controlled loop the body of loop will be executed first and
at the end the test condition is checked,if condition is
satisfied than body of loop will be executed again.

How's Thisssssssszzzzzzzz.........

Is This Answer Correct ?    95 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are global variables?

660


I heard that you have to include stdio.h before calling printf. Why?

600


What is this infamous null pointer, anyway?

622


What does c mean in standard form?

610


Write a program to print factorial of given number without using recursion?

580






What is structure pointer in c?

585


is it possible to create your own header files?

652


Explain what is the difference between text files and binary files?

626


What is function in c with example?

650


Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent

1436


What are extern variables in c?

557


What is difference between structure and union with example?

605


What are external variables in c?

561


What is the function of multilevel pointer in c?

683


Write a Program to find whether the given number or string is palindrome.

622