what is the difference between entry control and exit
control statement?
Answer Posted / ajay pandey
The entry control loop is also called for or while loop. Because while loop and for loop are check condition first and the condition is true then it execute the inside statement otherwise it is exit. Where do-while loop is atlist one time execute the inside statement and then check condition. Therefor do-while loop is exit control loop.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How can I trap or ignore keyboard interrupts like control-c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are the rules for the identifier?
how to capitalise first letter of each word in a given string?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Is c easier than java?
How is null defined in c?
Can a file other than a .h file be included with #include?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is volatile variable in c?
What is #error and use of it?
Where static variables are stored in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What are the disadvantages of c language?