我的一个链接列表显示功能有问题。功能如下。
我只是在其中一个 switch 语句中调用该函数。但是什么都没有显示。请帮我弄清楚我哪里出错了。
代码:
void display ()
{
data *cur_point;
cur_point = head;
if(cur_point = NULL)
{
printf("The list is empty");
}
else
{
while(cur_point != NULL)
{
printf("Name : %s \n Contact Number : %d \n",cur_point->name,cur_point->telno);
cur_point = cur_point -> nextp;
}
}
}