what is the difference between entry control and exit
control statement?
Answers were Sorted based on User's Feedback
Answer / kishan agrawal
Entry Control loop can be said as the loop which checks the
condition before execution of body if condition asked are
true than it will come to the next step(can be said as body
part of that particular loop/program) they are WHILE,FOR
EXIT Control loop can be said as the loop which checks the
condition after execution of body at once(can be said as
body part of that particular loop/program) if condition
asked are true than it will come to the second time
execution they are do-while
| Is This Answer Correct ? | 11 Yes | 15 No |
How can I dynamically allocate arrays?
a=5 a=a++/++a
Is c programming hard?
What is a example of a variable?
Explain the advantages of using macro in c language?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
hi how to convert program from notepad to turboc editor can u please help me
what is the function of pragma directive in c?
what is difference between C and C++
How can I write a function analogous to scanf?
wite a programme in c to linear search a data using flag and without using flags?
implement NAND gate logic in C code without using any bitwise operatior.