Answer Posted / shankar
1+3+5=9
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
Can you mix old-style and new-style function syntax?
What is meant by type casting?
What's the total generic pointer type?
Why do we use null pointer?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer 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:
Explain is it better to bitshift a value than to multiply by 2?
What is static volatile in c?
what is the different bitween abap and abap-hr?
What are register variables in c?
Write a C program to count the number of email on text
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are linked lists in c?
What are the rules for identifiers in c?