c语言strcmp函数的使用
时间: 2024-06-13 10:03:50 浏览: 137
strcmp函数是C语言中的字符串比较函数,用于比较两个字符串是否相等。该函数的原型为int strcmp(const char* str1, const char* str2),其中str1和str2分别为要比较的两个字符串。如果str1等于str2,则返回0;如果str1小于str2,则返回一个负数;如果str1大于str2,则返回一个正数。在使用该函数时,需要包含头文件<string.h>。下面是一个使用strcmp函数的例子:
```
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
int result = strcmp(str1, str2);
if (result == 0) {
printf("str1 equals str2\n");
} else if (result < 0) {
printf("str1 is less than str2\n");
} else {
printf("str1 is greater than str2\n");
}
return 0;
}
```
输出结果为"str1 is less than str2",因为在字典序中,"hello"小于"world"。
相关问题
c语言 strcmp函数
strcmp函数是C语言中的一个字符串比较函数,用于比较两个字符串的大小。该函数的原型为:
```c
int strcmp(const char *str1, const char *str2);
```
其中,str1和str2是要进行比较的两个字符串。函数返回值为整型,如果str1小于str2,则返回负数;如果str1大于str2,则返回正数;如果str1等于str2,则返回0。
下面是一个使用strcmp函数比较两个字符串大小的例子:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[20] = "hello";
char str2[20] = "world";
int result = strcmp(str1, str2);
if (result < 0)
{
printf("str1小于str2\n");
}
else if (result > 0)
{
printf("str1大于str2\n");
}
else
{
printf("str1等于str2\n");
}
return 0;
}
```
输出结果为:str1小于str2。
c语言strcmp函数源代码
下面是C语言中strcmp函数的源代码:
```c
int strcmp(const char *s1, const char *s2) {
while (*s1 && (*s1 == *s2)) {
s1++;
s2++;
}
return *(const unsigned char*)s1 - *(const unsigned char*)s2;
}
```
该函数用于比较两个字符串s1和s2,返回值为0表示两个字符串相等,否则返回两个字符串第一个不相同字符的ASCII码差值。该函数会遍历两个字符串,直到找到第一个不相同的字符为止。
阅读全文