Discussion :: Pointers
-
Is there any difference between the following two statements?
char *p=0;
char *t=NULL;
Answer : Option B
Explanation :
NULL is #defined as 0 in the 'stdio.h' file. Thus, both p and t are NULL pointers.
Be The First To Comment