利用strcpy函数给两个字符数组赋值字符串常量,用strcmp完成两个函数大小的比较,输出字符串比较的结果。
时间: 2024-05-16 15:15:17 浏览: 129
设计Strcmp算法,实现两个字符串的比较
下面是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[20], str2[20];
strcpy(str1, "hello");
strcpy(str2, "world");
int cmp = strcmp(str1, str2);
if (cmp < 0) {
printf("%s is less than %s\n", str1, str2);
} else if (cmp > 0) {
printf("%s is greater than %s\n", str1, str2);
} else {
printf("%s and %s are equal\n", str1, str2);
}
return 0;
}
```
运行结果:
```
hello is less than world
```
阅读全文