c语言==判断字符串是否相等
时间: 2024-05-03 15:22:53 浏览: 80
C语言判断字符串是否以str2开头代码
在C语言中,可以使用strcmp函数来判断两个字符串是否相等。
strcmp函数的使用格式为:
```
int strcmp(const char *str1, const char *str2);
```
其中,str1和str2为要比较的两个字符串。如果两个字符串相等,则返回0;如果str1大于str2,则返回一个正整数;如果str1小于str2,则返回一个负整数。
示例代码:
```
#include <stdio.h>
#include <string.h>
int main() {
char str1[100] = "Hello World";
char str2[100] = "Hello World";
char str3[100] = "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 equal.
str1 and str3 are not equal.
```
阅读全文