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 / 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 |
Post New Answer View All Answers
Which header file is essential for using strcmp function?
Can a pointer be volatile in c?
What does char * * argv mean in c?
Is it better to bitshift a value than to multiply by 2?
why programs in c are running with out #include
What is a ternary operator in c?
What is an auto variable in c?
write a program for the normal snake games find in most of the mobiles.
what is stack , heap ,code segment,and data segment
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What are the basic data types associated with c?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Explain a file operation in C with an example.
How can I invoke another program or command and trap its output?
How can you avoid including a header more than once?