what is the difference between entry control and exit
control statement?
Answer Posted / sandeep
In Entry controlled loop the test condition is checked
first and if that condition is true than the block of
statement in the loop body will be executed while in exit
controlled loop the body of loop will be executed first and
at the end the test condition is checked,if condition is
satisfied than body of loop will be executed again.
| Is This Answer Correct ? | 49 Yes | 21 No |
Post New Answer View All Answers
shorting algorithmS
What is meant by inheritance?
write a program to concatenation the string using switch case?
What is a volatile keyword in c?
How macro execution is faster than function ?
When should the register modifier be used? Does it really help?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
I heard that you have to include stdio.h before calling printf. Why?
Explain what is the most efficient way to store flag values?
What are the two types of structure?
What is a pointer in c?
Write a factorial program using C.
Why we use break in c?
What is an operator?
What is chain pointer in c?