what is the difference between entry control and exit
control statement?
Answer Posted / prathika
entry check loop:
first the condition of the loop wll be checked if the condition is true then the body of the lop will be executed
if the condition is not satisified the loop will not be executed
ex:for,while
exit check loop:
the conditio is placed at the end the statment will be executed atleast once even if the condition fails
ex:do while
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Is sizeof a keyword in c?
how many key words availabel in c a) 28 b) 31 c) 32
What are the two forms of #include directive?
What are the features of c languages?
How arrays can be passed to a user defined function
What is a function simple definition?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Which is better malloc or calloc?
What is string function in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
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.
What is a header file?
Is c programming hard?
What is #define used for in c?
Can one function call another?