Pointers - Programming

Q1:

Is there any difference between the following two statements?
char *p=0;
char *t=NULL;

A Yes

B No

ANS:B - No

NULL is #defined as 0 in the 'stdio.h' file. Thus, both p and t are NULL pointers.