gpt4 book ai didi

c - C 中的字符串比较函数

转载 作者:行者123 更新时间:2023-11-30 21:32:54 26 4
gpt4 key购买 nike

map[0][4]='\0';
city1[0][4]='\0';
strcpy(map[0],city1[0]);
map[0][0]='z';
printf("%s",map[0]);
printf("%s",city1[0]);
printf("%d \n",strcmp(map[0],city1[0]));

该函数的输出是zail
nail
12

为什么会这样呢?我不明白的事情strcmp ?为什么是 12 而不是其他数字?

最佳答案

回答你的问题,

strcmp("zail", "nail")

计算结果为 12,因为它从“zail”中的“z”中减去“nail”中的“n”,并且“z”-“n”= 12。

关于c - C 中的字符串比较函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10939911/

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