这个函数哪里错了
void addPerson(struct Call **head){
struct Call *call,*temp;
static struct Call *tail;
call=(struct Call *)malloc(sizeof(struct Call));
if(call==NULL)
{
printf("内存分配失败!\n");
exit(1);
}
getInput(call);
if(*head!=NULL)
{
tail->next=call;
call->next=NULL;
}
else
{
*head=call;
call->NULL; //这是47行
}
tail=call;
}
你都标了47行你没看出点啥?
页:
[1]