Possible Duplicate:
What's the difference between a null pointer and a void pointer?
What is the difference between a pointer to void and a NULL pointer in C? Or are they the same?
What is the difference between a pointer to void and a NULL pointer in C? Or are they the same? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
In C, there is
Examples:
|
|||
|
|
|
So yes, they are different, because a void pointer is a datatype, and a NULL pointer refers to any pointer which is set to NULL. |
|||
|
|
|
Pointer to void is a pointer to an unspecified type. Ie. Just a pointer. It can still be a valid pointer, but we don't know what it points to (eg. A function might take a void pointer as a parameter, and then interpret the type according to a different parameter) NULL is an 'empty' pointer. Not valid, can be used to specify a pointer to nothing / not set. It is a value whilst void is a type. |
|||
|
|