strcmp函数是用来比较两个字符串的大小的函数,其原型为:
int strcmp(const char *str1, const char *str2);
其中,str1和str2是要比较的两个字符串。
strcmp函数的返回值有三种情况:
下面是一个使用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 and str2 are equal\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is less than str2\n");
}
return 0;
}
在这个示例代码中,我们比较了两个字符串"hello"和"world"的大小,并根据比较的结果输出对应的信息。