在 if 条件的 while 循环中面临问题, 条件值相等,但不进入 if 条件。
void searchList(char name[20])
{
char contactName[20];
strcpy(contactName,name);
struct node *temp = head;
printf("nSearch Contact : n");
printf("-------------------n");
printf("Name : %sn",name);
while (temp != NULL)
{
if(temp->name == contactName)
{
printf("Contact Name : %sn",temp->name);
printf("Contact Number : %sn", temp->phone);
}
temp = temp->next;
}
}
你应该使用 string.h 库中的 strcmp 函数来比较字符串:
#include <string.h>
...
if (strcmp(temp->name, contactName) == 0) {
...
}
在此处查看更多信息 https://stackoverflow.com/a/8004250/492620