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
How can you increase the size of a dynamically allocated array?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How can I copy just a portion of a string?
What are derived data types in c?
Write the control statements in C language
What is pointers in c with example?
What is the process to create increment and decrement stamen in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Explain what is the advantage of a random access file?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Do you know the purpose of 'register' keyword?
Explain about the constants which help in debugging?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What are the functions to open and close the file in c language?
Can you please explain the difference between malloc() and calloc() function?