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
What is #include conio h?
Can a variable be both static and volatile in c?
what is the basis for selection of arrays or pointers as data structure in a program
When c language was developed?
How do you construct an increment statement or decrement statement in C?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Write a program to check palindrome number in c programming?
What is struct node in c?
Which is better between malloc and calloc?
Lists the benefits of c programming language?
What are file streams?
Can you write the algorithm for Queue?
What are pointers?
What are the 4 types of functions?
Write a code to remove duplicates in a string.