what is the difference between entry control and exit
control statement?

Answer Posted / ajay pandey

The entry control loop is also called for or while loop. Because while loop and for loop are check condition first and the condition is true then it execute the inside statement otherwise it is exit. Where do-while loop is atlist one time execute the inside statement and then check condition. Therefor do-while loop is exit control loop.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #error and use of it?

924


write a program to copy the string using switch case?

2628


how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions

2964


What is a MAC Address?

830


Differentiate between declaring a variable and defining a variable?

829


How was c created?

810


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

824


Explain what is output redirection?

888


what are bit fields? What is the use of bit fields in a structure declaration?

1778


What is NULL pointer?

863


Why we use break in c?

762


Explain goto?

924


What is the meaning of && in c?

758


can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......

1629


Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

2820