Output of the following C code is

#include stdio.h
main()
{
char *p = 0;
*p = 'a';
printf("value in pointer p is %c\n", *p);
}


Posted on by