strcmp函数是C语言中用来比较两个字符串的函数,返回值为整型,用来表示两个字符串的大小关系。其函数原型为:
int strcmp(const char *str1, const char *str2);
函数参数str1和str2分别为要比较的两个字符串,函数返回值为0表示str1和str2相等,返回值大于0表示str1大于str2,返回值小于0表示str1小于str2。
strcmp函数是按照ASCII字符顺序进行比较的,比较规则如下:
下面是一个使用strcmp函数的示例:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
int result = strcmp(str1, str2);
if (result == 0) {
printf("str1 is equal to str2\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is less than str2\n");
}
return 0;
}
在这个示例中,str1的值为"hello",str2的值为"world",通过strcmp函数比较两个字符串的大小关系并输出结果。