Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What are identifiers in c?

1238


Once I have used freopen, how can I get the original stdout (or stdin) back?

1119


What are the 3 types of structures?

1063


Explain how can type-insensitive macros be created?

1042


Does c have an equivalent to pascals with statement?

1062


What does main () mean in c?

1146


What is a lookup table in c?

1172


How can I sort a linked list?

1084


How does normalization of huge pointer works?

1228


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

2793


Explain what’s a signal? Explain what do I use signals for?

1248


Explain main function in c?

1134


What is const keyword in c?

1218


What is typedef struct in c?

1094


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'); }

1222