what is the difference between entry control and exit
control statement?
Answer Posted / prathika
entry check loop:
first the condition of the loop wll be checked if the condition is true then the body of the lop will be executed
if the condition is not satisified the loop will not be executed
ex:for,while
exit check loop:
the conditio is placed at the end the statment will be executed atleast once even if the condition fails
ex:do while
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is declaration and definition in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are control structures? What are the different types?
How can I do graphics in c?
What is openmp in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Write a program to check prime number in c programming?
Explain bit masking in c?
Why void main is used in c?
What are the types of data files?
What functions are used in dynamic memory allocation in c?
How to set file pointer to beginning c?
What is the correct declaration of main?
What are derived data types in c?
How do I swap bytes?