我想测试一下,看看“ char”类型的变量是否可以与诸如“ cheese”的常规字符串进行比较,例如:
#include <stdio.h>
int main()
{
char favoriteDairyProduct[30];
scanf("%s",favoriteDairyProduct);
if(favoriteDairyProduct == "cheese")
{
printf("You like cheese too!");
}
else
{
printf("I like cheese more.");
}
return 0;
}
(我实际上想做的比这更长,但这是我坚持的主要部分。)那么如何比较C中的两个字符串呢?
LEATH
哔哔one
相关分类