gpt4 book ai didi

c - 是否可以仅通过使用 stdio.h 和 conio.h header 来比较 c 中的字符串?

转载 作者:行者123 更新时间:2023-11-30 21:05:47 24 4
gpt4 key购买 nike

我已经尝试了所有的想法,但都行不通。我只是制作一个程序,当用户输入 EXIT 时,程序也将通过使用两个 header 退出。 #include<stdio.h>#include<conio.h> .

最佳答案

您可以编写自己的strcmp。

像这样:

int strcmp(const char *s1, const char *s2)
{
int i;

i = 0;
while (s1[i] != '\0' || s2[i] != '\0')
{
if (s2[i] != s1[i])
return (s1[i] - s2[i]);
i++;
}
return (0);
}

关于c - 是否可以仅通过使用 stdio.h 和 conio.h header 来比较 c 中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52729605/

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