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
What is %d used for?
What is the purpose of sprintf() function?
When should structures be passed by values or by references?
What is variable in c example?
What are the different types of control structures in programming?
Difference between pass by reference and pass by value?
Explain how to reverse singly link list.
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is openmp in c?
What should malloc() do?
Why does everyone say not to use scanf? What should I use instead?
Who invented bcpl language?
How can a number be converted to a string?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why c is faster than c++?