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
How does placing some code lines between the comment symbol help in debugging the code?
Can one function call another?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What does return 1 means in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What does double pointer mean in c?
How can I split up a string into whitespace-separated fields?
How do I convert a string to all upper or lower case?
Explain how can you check to see whether a symbol is defined?
What is the purpose of void in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
what is ur strangth & weekness
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What's the best way of making my program efficient?
How would you rename a function in C?