Linked by Eugenia Loli-Queru on Mon 14th Nov 2005 06:11 UTC
Thread beginning with comment 59949
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
RE[2]: Weird Codingstyle
by anda_skoa on Mon 14th Nov 2005 11:42
in reply to "RE: Weird Codingstyle"






Member since:
2005-07-07
I have seen quite some possibilities to check for a nullpointer, like:
if (!pointer)
if (pointer != NULL)
if (pointer != 0)
but this is the the first time I saw someone check 0 against the the pointer:
if (0 != pointer)
:)