how to find the sizof of any datatype using bit manipulations
Answer Posted / niranjan kumar niraj
int sizeOf();
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Explain modulus operator.
Is c is a middle level language?
How can I remove the trailing spaces from a string?
How can I send mail from within a c program?
What is function and its example?
Describe dynamic data structure in c programming language?
Explain the difference between malloc() and calloc() in c?
What is the c value paradox and how is it explained?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is difference between %d and %i in c?
find the sum of two matrices and WAP for it.
What is the auto keyword good for?
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 does %c mean in c?
Explain the concept and use of type void.