what is the difference between entry control and exit
control statement?
Answer Posted / s.s.venkatesh
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
Is This Answer Correct ? | 201 Yes | 32 No |
Post New Answer View All Answers
What does void main () mean?
What are void pointers in c?
Can we declare variable anywhere in c?
Can true be a variable name in c?
Hi can anyone tell what is a start up code?
Why do some versions of toupper act strangely if given an upper-case letter?
Where is c used?
What is difference between %d and %i in c?
Why is c called c not d or e?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
When should I declare a function?
What the advantages of using Unions?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are the difference between a free-standing and a hosted environment?
What is variable declaration and definition in c?