当前位置:首页 > 行业动态 > 正文

c语言strcmp怎么用

strcmp是C语言中的一个字符串比较函数,用于比较两个字符串是否相等,如果两个字符串相等,返回0;如果第一个字符串在字典顺序上小于第二个字符串,返回负数;如果第一个字符串在字典顺序上大于第二个字符串,返回正数。

使用方法如下:

1、引入头文件:

#include <string.h>

2、函数原型:

int strcmp(const char *str1, const char *str2);

参数:

str1:指向要比较的第一个字符串的指针。

str2:指向要比较的第二个字符串的指针。

返回值:

如果两个字符串相等,返回0。

如果第一个字符串在字典顺序上小于第二个字符串,返回负数。

如果第一个字符串在字典顺序上大于第二个字符串,返回正数。

3、示例代码:

#include <stdio.h>
#include <string.h>
int main() {
    char str1[] = "hello";
    char str2[] = "world";
    char str3[] = "hello";
    int result1 = strcmp(str1, str2); // 结果为负数,因为"hello" < "world"
    int result2 = strcmp(str1, str3); // 结果为0,因为"hello" == "hello"
    int result3 = strcmp(str2, str3); // 结果为负数,因为"world" < "hello"
    printf("strcmp(str1, str2) = %d
", result1); // 15
    printf("strcmp(str1, str3) = %d
", result2); // 0
    printf("strcmp(str2, str3) = %d
", result3); // 15
    return 0;
}

4、注意事项:

strcmp函数对大小写敏感,即大写字母被认为是小于小写字母的,如果需要忽略大小写进行比较,可以在调用strcmp之前将字符串转换为全大写或全小写。

strcmp函数只比较字符串的前n个字符,直到遇到第一个不同的字符为止,如果需要比较整个字符串,可以使用strncmp函数。

0