what will be the output of the following program?
include stdio.h
int *p = NULL;
int main()
{
int i = 0;
p = &i;
return 0;
}


Posted on by