strcmp
时间: 2023-08-28 11:09:03 浏览: 61
strcmp 函数的使用
strcmp是C语言中的一个字符串比较函数,用于比较两个字符串是否相等。函数原型为:
```c
int strcmp(const char* str1, const char* str2);
```
其中str1和str2是要比较的两个字符串,函数返回值为0表示两个字符串相等,否则返回一个非零值,该值表示两个字符串第一个不相同字符的ASCII码差值。
例如,下面的代码比较了两个字符串s1和s2是否相等,并打印出结果:
```c
#include <stdio.h>
#include <string.h>
int main() {
char s1[] = "hello";
char s2[] = "world";
if (strcmp(s1, s2) == 0) {
printf("s1 equals to s2\n");
} else {
printf("s1 does not equal to s2\n");
}
return 0;
}
```
输出结果为:
```
s1 does not equal to s2
```
阅读全文