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 associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the deal on sprintf_s return value?
Explain what is a 'locale'?
How do you sort filenames in a directory?
How can I make it pause before closing the program output window?
I have a varargs function which accepts a float parameter?
Place the #include statement must be written in the program?
How many types of operators are there in c?
Differentiate between Macro and ordinary definition.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
How can I prevent another program from modifying part of a file that I am modifying?
what is the significance of static storage class specifier?
What does emoji p mean?
What is pointers in c?
What is malloc calloc and realloc in c?