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
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
How do I determine whether a character is numeric, alphabetic, and so on?
Where register variables are stored in c?
What are dangling pointers in c?
Is it acceptable to declare/define a variable in a c header?
Can the curly brackets { } be used to enclose a single line of code?
Explain function?
Are there any problems with performing mathematical operations on different variable types?
What is masking?
How can I change their mode to binary?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
How can you be sure that a program follows the ANSI C standard?
How a string is stored in c?
what is the difference between 123 and 0123 in c?
What is a substring in c?