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


Please Help Members By Posting Answers For Below Questions

What is string in c language?

625


Can you please compare array with pointer?

617


What is mean by data types in c?

551


Are comments included during the compilation stage and placed in the EXE file as well?

672


What is a function simple definition?

618






What is #line?

611


How can I make sure that my program is the only one accessing a file?

678


Should I learn data structures in c or python?

583


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

772


What are disadvantages of C language.

649


What is sizeof int in c?

602


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

981


What are the different data types in C?

729


What is optimization in c?

568


How to write c functions that modify head pointer of a linked list?

545