使用strcmp比较字符串是否相等
时间: 2023-09-20 13:09:28 浏览: 153
比较的结果由函数值带回-C语言谭浩强第三版PPT课件
是的,strcmp函数可以用来比较两个字符串是否相等。它的函数原型为:
```c
int strcmp(const char *str1, const char *str2);
```
其中,str1和str2是需要比较的两个字符串。如果两个字符串相等,strcmp函数返回0;如果str1大于str2,返回一个正整数;如果str1小于str2,返回一个负整数。
例如,下面的代码比较了两个字符串是否相等:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
if (strcmp(str1, str2) == 0) {
printf("str1 and str2 are equal\n");
} else {
printf("str1 and str2 are not equal\n");
}
return 0;
}
```
输出结果为:
```
str1 and str2 are not equal
```
阅读全文