求助 高手请进讲解下
if(!strcmp(temp,p_student[i].student.name)){
system("cls");
printf("以下是你要查询%s的个人信息\n",p_student[i].student.name);
printf("\n 个人信息查询表\n");
printf("-----------------------------------------------------------------\n");
printf("\n姓 名: %s\n",p_student[i].student.name);
printf("\n性 别: %s\n",p_student[i].student.sex);
printf("\n出生日期: %s\n",p_student[i].student.birth);
printf("\n家庭住址: %s\n",p_student[i].student.adddr);
printf("\n联系电话: %s\n",p_student[i].student.poto);
printf("\n邮证编码: %s\n",p_student[i].student.dak);
printf("-----------------------------------------------------------------\n");
temp是储存用户输入的字符串
请问strcmp就是比较两个字符串是否相同
那if中为什么有个“!”呢?
是什么用的?