c语言==判断字符串是否相等
时间: 2024-05-24 14:12:17 浏览: 68
在C语言中比较两个字符串是否相等的方法
可以使用strcmp函数来判断两个字符串是否相等。
strcmp函数的原型为:
int strcmp(const char *str1, const char *str2);
该函数返回值为0表示两个字符串相等,返回值小于0表示str1小于str2,返回值大于0表示str1大于str2。
示例代码:
#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
阅读全文