what is the difference between entry control and exit
control statement?
Answer Posted / rahul singh
entry controlled loop first test the terminating condition and then execute the loop body.If the condition is found true he loop body is execute other wise the loop terminates.It is also called pre-tested loop.or Top -Tested loop.
An exit control loop first execute the loop bod and then test the terminating condition.If the condition is found true the loop body execute again otherwise the loop terminates.It is also called Post Tested loop or Bottom Tested loop.
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What happens if you free a pointer twice?
Add Two Numbers Without Using the Addition Operator
Explain a pre-processor and its advantages.
Differentiate fundamental data types and derived data types in C.
What is size of union in c?
What is typedef example?
In which header file is the null macro defined?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is the purpose of 'register' keyword?
Are pointers integers in c?
How are strings stored in c?
In c programming language, how many parameters can be passed to a function ?
What is property type c?
How main function is called in c?
Explain the difference between ++u and u++?