C++ NULL Define
Join the DZone community and get the full member experience.
Join For Free// C++ NULL define: better than "#define NULL 0 because" avoids cast warnings
#define NULL ((void *)0)
Opinions expressed by DZone contributors are their own.
Comments