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
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is difference between main and void main?
What is struct node in c?
What is the scope of global variable in c?
What is typeof in c?
Difference between exit() and _exit() function?
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.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why is struct padding needed?
Describe the steps to insert data into a singly linked list.
What are different types of operators?
What is the advantage of using #define to declare a constant?
How many parameters should a function have?
What is function in c with example?
Why c is called object oriented language?