Answer Posted / nashiinformaticssolutions
lvalue: A location in memory that can appear on the left-hand side of an assignment.
rvalue: The value assigned to an lvalue.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you invoke another program from within a C program?
What are the disadvantages of a shell structure?
What are directives in c?
How can I ensure that integer arithmetic doesnt overflow?
Is array a primitive data type in c?
In which layer of the network datastructure format change is done
Explain how do you declare an array that will hold more than 64kb of data?
What is volatile c?
Explain how do you use a pointer to a function?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Is r written in c?
What is the use of gets and puts?
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:
Explain what is wrong with this program statement?
What do the functions atoi(), itoa() and gcvt() do?