what is the difference between entry control and exit
control statement?
Answer Posted / kishan agrawal
Entry Control loop can be said as the loop which checks the
condition before execution of body if condition asked are
true than it will come to the next step(can be said as body
part of that particular loop/program) they are WHILE,FOR
EXIT Control loop can be said as the loop which checks the
condition after execution of body at once(can be said as
body part of that particular loop/program) if condition
asked are true than it will come to the second time
execution they are do-while
Is This Answer Correct ? | 11 Yes | 15 No |
Post New Answer View All Answers
What is the difference between scanf and fscanf?
How can I dynamically allocate arrays?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
How can I open a file so that other programs can update it at the same time?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is the use of header?
What are the features of c language?
What is data structure in c language?
What is const keyword in c?
What is the function of volatile in c language?
How pointer is different from array?
The file stdio.h, what does it contain?
Why & is used in c?
What is a struct c#?
What is a sequential access file?