linuxC语言判断字符串内容是否一致
时间: 2023-10-26 17:16:34 浏览: 77
在Linux下,可以使用strcmp函数来比较两个字符串是否相等。
strcmp函数的原型为:
```
int strcmp(const char *s1, const char *s2);
```
其中,s1和s2分别为需要比较的两个字符串。如果两个字符串相等,返回值为0;如果s1大于s2,返回值大于0;如果s1小于s2,返回值小于0。
示例代码:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[] = "Hello";
char str2[] = "hello";
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
```
阅读全文