C语言判断数组里的文字内容
时间: 2023-06-10 13:08:46 浏览: 185
比较的结果由函数值带回-第6章_数组2
在 C 语言中,我们可以使用字符串函数来判断数组里的文字内容。以下是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char arr[] = "hello world";
if (strcmp(arr, "hello world") == 0) {
printf("The array contains the string 'hello world'\n");
}
return 0;
}
```
在上面的代码中,我们使用了 `strcmp()` 函数来比较数组 `arr` 中的内容与字符串 `"hello world"` 是否相等,如果相等则输出一条消息。`strcmp()` 函数会返回一个整数值,如果两个字符串相等则返回 0,否则返回一个非零值。
阅读全文