c语言指针习题字符串比较
时间: 2023-12-11 07:03:42 浏览: 93
C语言中,可以使用strcmp()函数来比较两个字符串是否相等。该函数的原型为:
```c
int strcmp(const char *s1, const char *s2);
```
其中,s1和s2是要比较的两个字符串。如果两个字符串相等,返回值为0;如果s1大于s2,返回值大于0;如果s1小于s2,返回值小于0。
下面是一个例子,演示了如何使用strcmp()函数比较两个字符串:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[20] = "hello";
char str2[20] = "world";
char str3[20] = "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
```
阅读全文