show/hide this revision's text 4 edited tags
show/hide this revision's text 3 Rollback to Revision 1

How do you deal with NULLNUL?

From time to time, I run into communications issue with other programmers, when we talk about NULL. Now NULL could be

a NULL pointer
the NULL NUL character
an empty data element in some sort of database.


NULL


NUL seems to be the most confusing. It is the ASCII character 0x00.
I tend to use '\0' in my code to represent it. Some developers in my group
tend to prefer to simply use 0, and let the compiler implicitly cast it to a char.


What do you prefer to use for NULLNUL? and why?

show/hide this revision's text 2 added 3 characters in body; edited title

How do you deal with NULNULL?

From time to time, I run into communications issue with other programmers, when we talk about NULL. Now NULL could be

a NULL pointer
the NUL NULL character
an empty data element in some sort of database.


NUL


NULL seems to be the most confusing. It is the ASCII character 0x00.
I tend to use '\0' in my code to represent it. Some developers in my group
tend to prefer to simply use 0, and let the compiler implicitly cast it to a char.


What do you prefer to use for NULNULL? and why?

show/hide this revision's text 1