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
Why do we need functions in c?
Is sizeof a keyword in c?
What are the different types of constants?
Why & is used in c?
Not all reserved words are written in lowercase. TRUE or FALSE?
Is c procedural or functional?
Is c language still used?
write a program to find out prime number using sieve case?
What does sizeof function do?
What is the scope of static variable in c?
What is a memory leak? How to avoid it?
What is structure and union in c?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
a value that does not change during program execution a) variabe b) argument c) parameter d) none
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above