NULL: Difference between revisions
Appearance
m Ak120 moved page OS2 API:Constant:NULL to NULL |
No edit summary |
||
Line 1: | Line 1: | ||
== NULL == | == NULL == | ||
Null Pointer value. | Null Pointer value. | ||
=== Value === | === Value === | ||
NULL is defined as: | |||
#define NULL 0 // in C++ | |||
#define NULL (([[void]]*)0) /* in C */ | |||
[[Category:Constant]] | |||
[[Category: |
Revision as of 17:46, 6 October 2016
NULL
Null Pointer value.
Value
NULL is defined as:
#define NULL 0 // in C++ #define NULL ((void*)0) /* in C */