strcmp函数用于比较两个字符串是否相等。
其函数原型为:
int strcmp(const char *str1, const char *str2);
参数str1和str2分别为要比较的两个字符串,返回值为整数。当str1小于str2时,返回一个负数;当str1大于str2时,返回一个正数;当str1等于str2时,返回0。
示例代码如下:
#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 less than str2\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is equal to str2\n");
}
return 0;
}
输出结果为:
str1 is less than str2
可以看出,由于字母’H’比字母’W’在ASCII码中小,所以str1小于str2。