From time to time, I run into communications issue with other programmers, when we talk about NULL.  Now NULL could be
<BR>
<BR>  a NULL pointer
<BR>  the NULL character
<BR>  an empty data element in some sort of database.

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

<BR> What do you prefer to use for NULL? and why?