In the following program, i am getting a runtime error instead of my program printing NULL. May be this is very silly or simple understanding but i do not have right answer. Thanks in advance.
#include<stdio.h>
int main()
{
char *p = NULL;
printf("%c", *p);
return 0;
}