what is the difference between entry control and exit
control statement?
Answer Posted / jimi saha
In Entry controlled loop the test condition is checked first
and if condition is true than the bock 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 then body of loop will be executed again..
| Is This Answer Correct ? | 14 Yes | 15 No |
Post New Answer View All Answers
Explain what are the advantages and disadvantages of a heap?
How can I make sure that my program is the only one accessing a file?
Find MAXIMUM of three distinct integers using a single C statement
What is pointers in c with example?
What is function and its example?
What is memory leak in c?
How can I implement sets or arrays of bits?
i want to know the procedure of qualcomm for getting a job through offcampus
What is difference between array and structure in c?
What is main () in c?
What does != Mean in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is array of pointers to string?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Write a simple code fragment that will check if a number is positive or negative.