Is both NULL and false are equivalent to 0 (int) in C ? For example both lines below return the same value?
return NULL; return false;