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
Why is c known as a mother language?
How many data structures are there in c?
What is the use of #define preprocessor in c?
Why is c not oop?
what is event driven software and what is procedural driven software?
What are identifiers c?
How can I read and write comma-delimited text?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Explain what is meant by high-order and low-order bytes?
Differentiate Source Codes from Object Codes
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Are there any problems with performing mathematical operations on different variable types?
What extern c means?
When should a far pointer be used?