gpt4 book ai didi

c - strncmp() 给出误报

转载 作者:太空宇宙 更新时间:2023-11-04 05:27:33 26 4
gpt4 key购买 nike

我一直在解决 strncmp 和 getline 的问题...所以我做了一个小测试应用程序。 strncmp 给出误报,我不知道我做错了什么。

这是程序

#include <stdio.h>

FILE *fp=NULL;
char uname[4]="test";
char *confline=NULL;
size_t conflinelength=0;
int datlength;

main()
{
datlength=4;
fp=fopen("test.txt","r+");
while (getline(&confline,&conflinelength,fp)!=-1)
{
if (strncmp(confline,uname,(datlength-1))==0);
{
printf("match\n");
return;
}
}
printf("no match\n");
fclose(fp);
}

这是“test.txt”...

bjklas

和程序输出

match

最佳答案

if (strncmp(confline,uname,(datlength-1))==0);
printf("match\n");

相当于

if (strncmp(confline,uname,(datlength-1))==0)
;
printf("match\n");

您需要从 if 行的末尾删除 ;

关于c - strncmp() 给出误报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19392014/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com