what is the difference between entry control and exit
control statement?
Answer Posted / greeshma
entry control loop
the first step in such loop is evaluating the condition.. and it executes if it is true.. and will not execute if it is false
exit control loop
here the execution is the first step and evaluation is the second step..
| Is This Answer Correct ? | 26 Yes | 14 No |
Post New Answer View All Answers
What are identifiers in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What are the 3 types of structures?
Explain how can type-insensitive macros be created?
Does c have an equivalent to pascals with statement?
What does main () mean in c?
What is a lookup table in c?
How can I sort a linked list?
How does normalization of huge pointer works?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Explain what’s a signal? Explain what do I use signals for?
Explain main function in c?
What is const keyword in c?
What is typedef struct in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }