Answers

Question and Answer:

  Home  Data Structures

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

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;

 128 views

More Questions for you: