C++怎么判断两个字符串相等
时间: 2024-03-18 17:18:13 浏览: 66
在C语言中比较两个字符串是否相等的方法
在C语言中,可以使用strcmp函数来判断两个字符串是否相等。strcmp函数的原型为:
```c
int strcmp(const char* string1, const char* string2);
```
该函数会比较两个字符串string1和string2,并返回一个整数值:
- 如果string1等于string2,返回0
- 如果string1小于string2,返回一个负数
- 如果string1大于string2,返回一个正数
因此,可以通过判断strcmp的返回值是否为0,来判断两个字符串是否相等。例如:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "hello";
char str3[] = "world";
if (strcmp(str1, str2) == 0) {
printf("str1 and str2 are equal\n");
} else {
printf("str1 and str2 are not equal\n");
}
if (strcmp(str1, str3) == 0) {
printf("str1 and str3 are equal\n");
} else {
printf("str1 and str3 are not equal\n");
}
return 0;
}
```
输出结果为:
```
str1 and str2 are equal
str1 and str3 are not equal
```
阅读全文