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

WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1837


What is difference between main and void main?

881


What is struct node in c?

842


What is the scope of global variable in c?

782


What is typeof in c?

789


Difference between exit() and _exit() function?

912


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

1029


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

930


Why is struct padding needed?

844


Describe the steps to insert data into a singly linked list.

852


What are different types of operators?

806


What is the advantage of using #define to declare a constant?

876


How many parameters should a function have?

899


What is function in c with example?

859


Why c is called object oriented language?

839