This wiki is out of date, use the continuation of this wiki instead

NULL

From FenixWiki

Revision as of 00:04, 28 June 2007 by Sandman (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search


[edit] Definition

NULL is a pointer, pointing to nothing. In programming it points to 0x00000000, or just plain 0.

Available since Fenix 0.93.

The following check is the same as checking if a pointer variable is NULL:

if(my_pointer)
end

In which my_pointer is a pointer variable.

Constant - Value - Description
NULL - 0 - 0x00000000, pointing to nothing.
Personal tools