字符串比较函数strcmp
时间: 2023-11-16 09:00:23 浏览: 241
数据结构-c语言-带main函数-串4-串比较-根据标准库函数strcmp()和定义求串比较函数的两种方法。
strcmp函数是C语言中的字符串比较函数,用于比较两个字符串的大小。该函数的原型为int strcmp(const char *str1, const char *str2),其中str1和str2分别为需要比较的两个字符串。函数返回值为0表示两个字符串相等,返回值大于0表示str1大于str2,返回值小于0表示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 equals to str2\n");
} else if (result > 0) {
printf("str1 is greater than str2\n");
} else {
printf("str1 is less than str2\n");
}
return 0;
}
```
阅读全文