请大家一定帮我解决,关于链表的问题。我用的是wintc
find(struct stu *head,char name[]){
struct stu *p;
p=head;
while(p!=NULL)
{
if(strcmp(p->name,name)==0)
{
printf("the student information under fellow:\n\t\tNAME NUMBER AGE ROOM \n");
printf("%s%d%d%d",p->name,p->num,p->age,p->room);
break;
}
p=p->next;
}
if(p==NULL) printf("Can not find!");
}
main()
{
char name[20];
struct stu *head;
head=creat();
output(head);
printf("please input what you want to find:");
gets(name);
puts(name);/*这两句都没起作用*/
find(head,name);
getch();
}
以上为部分代码,目的是查找新建链表中的数据,如果找到就输出。问题是这样的:执行的时候gets(name);puts(name);根本没有执行。请问是什么原因?同样的问题我遇到多次,请大家一定帮忙……谢谢!