NULL is defined in "stdio.h"./* Define NULL pointer value */
#ifndef NULL#ifdef __cplusplus#define NULL 0#else#define NULL ((void *)0)#endif#endif