what is the difference between entry control and exit
control statement?
Answer Posted / s.s.venkatesh
Entry control is otherwise called as WHILE loop,because the
while loop checks the condition at first,and then only
execute the following instructions.
Exit control is also called as DO WHILE loop,because the do
while loop checks the condition at last
| Is This Answer Correct ? | 201 Yes | 32 No |
Post New Answer View All Answers
What is the difference between malloc() and calloc()?
What is an expression?
Explain what will the preprocessor do for a program?
What do you mean by recursion in c?
What is the use of clrscr?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
what do you mean by inline function in C?
What are the advantages of external class?
What are the difference between a free-standing and a hosted environment?
Can include files be nested?
What is the difference between functions abs() and fabs()?
Explain what are binary trees?
What are linker error?
Can you write a programmer for FACTORIAL using recursion?