What is the difference between NULL AND VOID pointer in Data Structures?

Submitted by: Administrator
NULL can be value for pointer type variables.
VOID is a type identifier which has not size.
NULL and void are not same. Example: void* ptr = NULL;
Submitted by: Administrator

Read Online Data Structures Job Interview Questions And Answers