Answer Posted / hasib
C is based program . The computer only know binary number (0s and 1s)
That is why identifiers not to give one digits , he give two digits follow binary number c++.
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What is clrscr in c?
Why is void main used?
What is dynamic memory allocation?
What is c value paradox explain?
Are bit fields portable?
Why is sprintf unsafe?
What is call by value in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
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 how do you search data in a data file using random access method?
What was noalias and what ever happened to it?
Are the outer parentheses in return statements really optional?
Is calloc better than malloc?
What is enumerated data type in c?
What are pointers? What are different types of pointers?