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
What is string constants?
What does nil mean in c?
Why do we need volatile in c?
What are the types of c language?
What is the explanation for cyclic nature of data types in c?
How can you tell whether a program was compiled using c versus c++?
What is data structure in c language?
Write a program of prime number using recursion.
Explain the use of 'auto' keyword
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the difference between far and near ?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How old is c programming language?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Why is c fast?