c语言字符串怎么比较大小
时间: 2023-12-09 20:04:10 浏览: 60
C语言中的字符串比较大小可以使用标准库函数`strcmp`。`strcmp`函数会按照字典序逐个比较两个字符串,直到出现不同的字符或者其中一个字符串结束。如果第一个字符串在字典序中排在第二个字符串之前,则返回一个负整数;如果第一个字符串在字典序中排在第二个字符串之后,则返回一个正整数;如果两个字符串相等,则返回0。
下面是一个使用`strcmp`函数比较两个字符串大小的例子:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
int result = strcmp(str1, str2);
if (result < 0) {
printf("%s is less than %s\n", str1, str2);
} else if (result > 0) {
printf("%s is greater than %s\n", str1, str2);
} else {
printf("%s is equal to %s\n", str1, str2);
}
return 0;
}
```
输出:
```
hello is less than world
```
阅读全文