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

Answer Posted / ksk

Entry Comtrolled will check the Condition at First and
doesn't execute if it is False.
Exit Comtrolled will check the Condition at Last and at
least once the statement will execute though it is False .

Is This Answer Correct ?    338 Yes 31 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is calloc malloc realloc in c?

819


Why header file is used in c?

785


How can I write functions that take a variable number of arguments?

856


What is getch() function?

836


What is the use of ?

824


Why pointers are used?

838


What is function prototype in c language?

822


When should volatile modifier be used?

760


What is nested structure?

791


Define the scope of static variables.

841


What is wrong with this declaration?

843


Is c procedural or functional?

791


How do I get a null pointer in my programs?

855


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5222


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

854