Jump to content

NULL

From EDM2
Revision as of 16:26, 13 March 2018 by Ak120 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 */