typedef struct Node
{
int data;
struct Node *Lchild;
struct Node *Rchild;
}BiTree;
定义
void main()
{
BiTree*p;
p=(BiTree *)malloc(sizeof(Node));
p->data=1111;
p->Lchild=NULL;p->Rchild=NULL;
free(p);
}
程序时这样的,请问free(p)之后,p==NULL么?p->data=多少?