在C语言中,可以使用strcmp()函数来判断两个字符串是否相等。strcmp()函数会比较两个字符串的内容,如果相等则返回0,如果不相等则返回非0的值。例如:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "hello";
if (strcmp(str1, str2) == 0) {
printf("The strings are equal\n");
} else {
printf("The strings are not equal\n");
}
return 0;
}
上面的代码会输出"The strings are equal",因为str1和str2的内容是相等的。如果str2的内容是"world",则会输出"The strings are not equal"。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言斐波那契数列实现代码怎么写