在C语言中,可以使用strcmp()
函数来比较两个字符串。这个函数是标准库string.h
中的一个函数,用于比较两个以空字符结尾的字符串。
函数原型:
int strcmp(const char *str1, const char *str2);
参数:
str1
:指向第一个字符串的指针。str2
:指向第二个字符串的指针。返回值:
str1
和str2
相等,则返回0。str1
在字典顺序上小于str2
,则返回一个负整数。str1
在字典顺序上大于str2
,则返回一个正整数。示例代码:
#include<stdio.h>
#include<string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
int result;
result = strcmp(str1, str2);
if (result == 0) {
printf("str1 and str2 are equal\n");
} else if (result < 0) {
printf("str1 is less than str2\n");
} else {
printf("str1 is greater than str2\n");
}
return 0;
}
输出结果:
str1 is less than str2
注意:strcmp()
函数区分大小写,所以"Hello"和"hello"会被认为是不同的字符串。如果需要进行不区分大小写的字符串比较,可以使用strcasecmp()
函数(在某些系统上可能是_stricmp()
或stricmp()
)。