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
What is calloc malloc realloc in c?
Why header file is used in c?
How can I write functions that take a variable number of arguments?
What is getch() function?
What is the use of ?
Why pointers are used?
What is function prototype in c language?
When should volatile modifier be used?
What is nested structure?
Define the scope of static variables.
What is wrong with this declaration?
Is c procedural or functional?
How do I get a null pointer in my programs?
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.
#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); }