int main(void) {
char s[] = "ab";
char *s1 = "ab";
if(strcmp(s, s1))
printf("%d", 24);
else
printf("%d", 23);
return EXIT_SUCCESS;
}
为什么要回答23?
答案 0 :(得分:3)
这是因为strcmp
如果字符串相等则返回0
。 0
在C中被视为false
。
strcmp(string1, string2)
if Return value < 0 then it indicates string1 is less than string2
if Return value > 0 then it indicates string2 is less than string1
if Return value = 0 then it indicates string1 is equal to string2
答案 1 :(得分:3)
strcmp
返回0,如本例所示。 0
已转换为false
,因此会执行else
块,打印23
。
答案 2 :(得分:2)
strcmp
成功返回0
。因此if
将失败。
将if
声明更改为
if(strcmp(s , s1) == 0)
答案 3 :(得分:2)
strcmp
返回0.