As far as I know, C defines NULL
like this:
#define NULL ( (void *) 0)
Then, how should we define NULL_POINTER
? I defined it the same in my program and it worked, but I suppose that is just a coincidence:
#define NULL_POINTER ( (void *) 0)
What would be the logical definition, if any ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…