To what value are pointers initialized?
1) NULL
2) Newly allocated memory
3) No action is taken by the compiler to initialize
pointers.
Answers were Sorted based on User's Feedback
no action is taken by complier to initialize pointers
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / n
depends:
-if static storage for pointer(pointer itself is a global
variable) => initialized with NULL
-if automatic storage =>no initialization
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / harman bajaj
When we create a pointer, then by default the pointer
initialized with NULL value .i.e. ASCII value of NULL is 0.
| Is This Answer Correct ? | 2 Yes | 1 No |
Write a program to print fibonacci series without using recursion?
Can I initialize unions?
How to Throw some light on the splay trees?
Is it possible to run a c program without using main?If yes HOW??
How many levels deep can include files be nested?
What is array of structure in c programming?
What is multidimensional arrays
How can you find the day of the week given the date?
What are the uses of pre-processor directives?
What are the 4 types of unions?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is an lvalue and an rvalue?