what is the difference between entry control and exit
control statement?
Answer Posted / jimi saha
In Entry controlled loop the test condition is checked first
and if condition is true than the bock 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 then body of loop will be executed again..
Is This Answer Correct ? | 14 Yes | 15 No |
Post New Answer View All Answers
What is queue in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is wild pointer in c?
What is hungarian notation? Is it worthwhile?
What is difference between class and structure?
explain what is a newline escape sequence?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Why do we use int main?
What is difference between scanf and gets?
Write a factorial program using C.
How are pointers declared in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain what are its uses in c programming?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Write a program of prime number using recursion.