what is the difference between entry control and exit
control statement?
Answer Posted / ajay pandey
The entry control loop is also called for or while loop. Because while loop and for loop are check condition first and the condition is true then it execute the inside statement otherwise it is exit. Where do-while loop is atlist one time execute the inside statement and then check condition. Therefor do-while loop is exit control loop.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
shorting algorithmS
How do you define CONSTANT in C?
Why do we use namespace feature?
What is character constants?
What is indirection?
What does. int *x[](); means ?
What is || operator and how does it function in a program?
Write a program to know whether the input number is an armstrong number.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is a 'null pointer assignment' error?
What is new line escape sequence?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is pre-emptive data structure and explain it with example?
What is use of bit field?