what is the difference between entry control and exit
control statement?
Answer Posted / s.s.venkatesh
Entry control is otherwise called as WHILE loop,because the
while loop checks the condition at first,and then only
execute the following instructions.
Exit control is also called as DO WHILE loop,because the do
while loop checks the condition at last
| Is This Answer Correct ? | 201 Yes | 32 No |
Post New Answer View All Answers
how to count no of words,characters,lines in a paragraph.
What is the process to generate random numbers in c programming language?
What is the translation phases used in c language?
What is structure pointer in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is the use of bit field?
What is wrong with this code?
What is sizeof int in c?
Which is better between malloc and calloc?
What is ponter?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Tell me is null always defined as 0(zero)?
Explain what is a 'locale'?
What are compound statements?
Did c have any year 2000 problems?