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


Please Help Members By Posting Answers For Below Questions

What is queue in c?

662


In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none

843


What is wild pointer in c?

715


What is hungarian notation? Is it worthwhile?

808


What is difference between class and structure?

680






explain what is a newline escape sequence?

769


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

947


Why do we use int main?

713


What is difference between scanf and gets?

709


Write a factorial program using C.

734


How are pointers declared in c?

687


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

733


Explain what are its uses in c programming?

675


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

692


Write a program of prime number using recursion.

709