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


Please Help Members By Posting Answers For Below Questions

struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

1057


Why is c faster?

800


How would you use the functions fseek(), freed(), fwrite() and ftell()?

939


What is the difference between formatted&unformatted i/o functions?

846


in iso what are the common technological language?

1886


What is the use of typedef in structure in c?

738


What are types of functions?

799


What is bubble sort technique in c?

790


Can we declare function inside main?

784


What is c basic?

922


What should malloc() do?

876


How do I determine whether a character is numeric, alphabetic, and so on?

898


Is c still used?

819


what is the difference between 123 and 0123 in c?

971


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

845