c语言strcmp函数的使用
时间: 2024-06-13 22:03:50 浏览: 131
c语言strcmp 函数使用
strcmp函数是C语言中的字符串比较函数,用于比较两个字符串是否相等。该函数的原型为int strcmp(const char* str1, const char* str2),其中str1和str2分别为要比较的两个字符串。如果str1等于str2,则返回0;如果str1小于str2,则返回一个负数;如果str1大于str2,则返回一个正数。在使用该函数时,需要包含头文件<string.h>。下面是一个使用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 equals str2\n");
} else if (result < 0) {
printf("str1 is less than str2\n");
} else {
printf("str1 is greater than str2\n");
}
return 0;
}
```
输出结果为"str1 is less than str2",因为在字典序中,"hello"小于"world"。
阅读全文