what is the difference between entry control and exit
control statement?
Answers were Sorted based on User's Feedback
Answer / kishan agrawal
Entry Control loop can be said as the loop which checks the
condition before execution of body if condition asked are
true than it will come to the next step(can be said as body
part of that particular loop/program) they are WHILE,FOR
EXIT Control loop can be said as the loop which checks the
condition after execution of body at once(can be said as
body part of that particular loop/program) if condition
asked are true than it will come to the second time
execution they are do-while
Is This Answer Correct ? | 11 Yes | 15 No |
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the process of writing the null pointer?
What are extern variables in c?
What is formal argument?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is structure of c program?
What is a program flowchart and explain how does it help in writing a program?
what is the difference between structural,object based,object orientd programming languages?