what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / guest
infinite loop
| Is This Answer Correct ? | 29 Yes | 7 No |
Post New Answer View All Answers
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is #line used for?
Why do we use int main?
When do we get logical errors?
Explain how can you tell whether a program was compiled using c versus c++?
Differentiate between a structure and a union.
What is a pointer in c?
Compare interpreters and compilers.
Where is c used?
Explain what are linked list?
When is a void pointer used?
Which is better pointer or array?
i got 75% in all semester am i eligible for your company
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 is use of integral promotions in c?