C语言 比较两个字符串的大小
时间: 2023-07-01 18:13:10 浏览: 457
在 C 语言中,可以使用 strcmp 函数来比较两个字符串的大小。该函数的原型如下:
```
int strcmp(const char *s1, const char *s2);
```
其中,s1 和 s2 分别表示要比较的两个字符串。如果 s1 小于 s2,则该函数返回一个负整数;如果 s1 等于 s2,则返回 0;如果 s1 大于 s2,则返回一个正整数。
例如,下面的代码比较了两个字符串 str1 和 str2 的大小:
```c
#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 equal to str2\n");
}
else
{
printf("str1 is greater than str2\n");
}
return 0;
}
```
输出结果为:
```
str1 is less than str2
```
阅读全文