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
List out few of the applications that make use of Multilinked Structures?
What are header files? What are their uses?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Is there any data type in c with variable size?
How many keywords are there in c?
What is a memory leak? How to avoid it?
What are categories used for in c?
What does *p++ do?
What is c token?
What is the difference between far and near in c?
What is the role of this pointer?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
differentiate built-in functions and user – defined functions.
Can we assign string to char pointer?
How is pointer initialized in c?