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
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
Why is c faster?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is the difference between formatted&unformatted i/o functions?
in iso what are the common technological language?
What is the use of typedef in structure in c?
What are types of functions?
What is bubble sort technique in c?
Can we declare function inside main?
What is c basic?
What should malloc() do?
How do I determine whether a character is numeric, alphabetic, and so on?
Is c still used?
what is the difference between 123 and 0123 in c?
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?