判断两个字符数组相等
时间: 2023-08-06 13:06:51 浏览: 93
JavaScript中判断两个字符串是否相等的方法
5星 · 资源好评率100%
判断两个字符数组相等可以使用strcmp函数,其语法如下:
```
int strcmp(const char* str1, const char* str2);
```
该函数会比较str1和str2两个字符数组的内容是否相等,如果相等,则返回0,如果不相等,则返回非零值。
示例代码如下:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
char str3[] = "hello";
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 not equal.
str1 and str3 are equal.
```
阅读全文