What is the difference between null pointer and void pointer
Answer Posted / lakhpat
A Void pointer is a special type of pointer of void and
denotes that it can point to any data type. NULL pointers
can take any pointer type, but do not point to any valid
reference or memory address. It is important to note that a
NULL pointer is different from a pointer that is not
initialized.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What are the c keywords?
What is the role of this pointer?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
a program that can input number of records and can view it again the record
What is the time and space complexities of merge sort and when is it preferred over quick sort?
How can I automatically locate a programs configuration files in the same directory as the executable?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Explain pointers in c programming?
How to write c functions that modify head pointer of a linked list?
Write a program to print "hello world" without using a semicolon?
What is array of structure in c programming?
What is wild pointer in c with example?
Explain what is the difference between a string and an array?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
How do I get an accurate error status return from system on ms-dos?