what is the difference between entry control and exit
control statement?
Answer Posted / sandeep
In Entry controlled loop the test condition is checked
first and if that condition is true than the block of
statement in the loop body will be executed while in exit
controlled loop the body of loop will be executed first and
at the end the test condition is checked,if condition is
satisfied than body of loop will be executed again.
| Is This Answer Correct ? | 49 Yes | 21 No |
Post New Answer View All Answers
Define recursion in c.
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Where are the auto variables stored?
What library is sizeof in c?
What is the purpose of void pointer?
Write a program to reverse a string.
What is realloc in c?
What is the need of structure in c?
By using C language input a date into it and if it is right?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is the difference between text files and binary files?
What is a lookup table in c?
What are the differences between Structures and Arrays?
Does c have function or method?