what is the difference between entry control and exit
control statement?
Answer Posted / prathika
entry check loop:
first the condition of the loop wll be checked if the condition is true then the body of the lop will be executed
if the condition is not satisified the loop will not be executed
ex:for,while
exit check loop:
the conditio is placed at the end the statment will be executed atleast once even if the condition fails
ex:do while
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
When c language was developed?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Explain how can I make sure that my program is the only one accessing a file?
How do you define a string?
Do you know null pointer?
Why C language is a procedural language?
what are bit fields in c?
What is a floating point in c?
How main function is called in c?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
How do you override a defined macro?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What do you understand by normalization of pointers?
What is clrscr ()?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.