what is the difference between entry control and exit
control statement?
Answer Posted / prathika
entry check loop:
first the condition of the loop wll be checked if the condition is true then the body of the lop will be executed
if the condition is not satisified the loop will not be executed
ex:for,while
exit check loop:
the conditio is placed at the end the statment will be executed atleast once even if the condition fails
ex:do while
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What are the types of operators in c?
What is switch in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is bss in c?
What are qualifiers?
Explain how can I write functions that take a variable number of arguments?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Why c language is called c?
Explain what standard functions are available to manipulate strings?
What is #define used for in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What is the difference between procedural and functional programming?
Write a factorial program using C.
How can I avoid the abort, retry, fail messages?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?