c语言如何判断两个字符串是否相等
时间: 2023-07-16 11:15:40 浏览: 90
请阅读以下函数并指出该函数的功能-c语言课件(大学教程)
在C语言中,可以使用strcmp()函数来判断两个字符串是否相等。
strcmp()函数的用法如下:
int strcmp(const char *str1, const char *str2);
其中,str1和str2是要比较的两个字符串。
如果str1和str2相等,函数返回0;如果str1小于str2,则返回一个负数;如果str1大于str2,则返回一个正数。
例如:
```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
```
可以看出,strcmp()函数能够准确地判断两个字符串是否相等。
阅读全文