NULL

From EDM2
Jump to: navigation, search

The NULL pointer value is a pointer that doesn't point to a data object.

Value

NULL is defined as:

#define NULL 0 // in C++
#define NULL ((void*)0) /* in C */