Jump to content

NULL: Difference between revisions

From EDM2
Ak120 (talk | contribs)
No edit summary
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
== NULL ==
Null Pointer value.
Null Pointer value.



Revision as of 14:05, 24 May 2017

Null Pointer value.

Value

NULL is defined as:

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