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
Can we change the value of constant variable in c?
Where is c used?
What are inbuilt functions in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why is it important to memset a variable, immediately after allocating memory to it ?
Explain how do you sort filenames in a directory?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is the most efficient way to store flag values?
What are derived data types in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Does free set pointer to null?
What is break statement?
Is c# a good language?
What language is windows 1.0 written?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.