What is a null pointer?
By admin on Jan 9, 2007 in C Interview Questions, Technical
There are times when it’s necessary to have a pointer that doesn’t point to anything. The macro NULL, defined in
The null pointer is used in three ways:
1) To stop indirection in a recursive data structure
2) As an error value
3) As a sentinel value


