所以我从文件中一个一个地读取字符:
char temp[3];
temp[0] = nextchar;
printf("%c",temp[0]); //prints %
temp[1] = nextchar = fgetc(srcptr);
printf("%c",temp[1]); //prints 2
temp[2] = nextchar = fgetc(srcptr);
printf("%c",temp[2]); //prints 0
if(strcmp(temp, "%20") == 0) { printf("%s","blahblah"); }
理想情况下,这应该在最后打印“blahblah”。然而,事实并非如此。那么为什么 strcmp 返回 0,更重要的是:我该如何修复它?