in reply to Re^2: Check Variables for NULL
in thread Check Variables for NULL
Check the C standard. It has a NULL. How it's implemented is implementation defined, which means it could be anything. Section 7.1.6 of the 1990 standard (yes, there's a 1999 standard - I don't have a copy of that) includes the text:
The macros areYou're confusing C with C++ which defines NULL to be equivalent to the integer constant 0. Normally in C, the define is actually (void*)0.
NULL
which expands to an implementation-defined null pointer constant
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Check Variables for NULL
by GrandFather (Saint) on Feb 07, 2007 at 21:40 UTC |