what is the difference between entry control and exit
control statement?
Answer Posted / 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 |
Post New Answer View All Answers
C language questions for civil engineering
What are actual arguments?
write a program to print data of 5 five students with structures?
How can I convert a number to a string?
What is the use of linkage in c language?
What are linked lists in c?
What is a shell structure examples?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What are the different properties of variable number of arguments?
What are register variables in c?
What are the key features in c programming language?
Explain about block scope in c?
What is the meaning of typedef struct in c?
What is variable in c example?
Can variables be declared anywhere in c?