To what value are pointers initialized?
1) NULL
2) Newly allocated memory
3) No action is taken by the compiler to initialize
pointers.
Answer Posted / deepanjali
no action is taken by complier to initialize pointers
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What is selection sort in c?
What is a pointer value and address in c?
Explain zero based addressing.
How to define structures? ·
What is main () in c?
How many identifiers are there in c?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Explain the difference between structs and unions in c?
What is C language ?
Explain what is meant by high-order and low-order bytes?
What is the significance of scope resolution operator?
In c language can we compile a program without main() function?
while initialization of array why we use a[][2] why not a[2][]...?
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 the total generic pointer type?