strcmp在c语言中怎么用

1032
2023/12/1 11:47:16
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

strcmp函数是用来比较两个字符串的大小的函数,其原型为:

int strcmp(const char *s1, const char *s2);

函数返回值为整型,表示两个字符串的大小关系。具体用法如下:

#include <stdio.h>
#include <string.h>

int main() {
    char str1[] = "hello";
    char str2[] = "world";

    int result = strcmp(str1, str2);

    if (result < 0) {
        printf("str1 is less than str2\n");
    } else if (result > 0) {
        printf("str1 is greater than str2\n");
    } else {
        printf("str1 is equal to str2\n");
    }

    return 0;
}

输出结果为:str1 is less than str2,表示str1str2小。如果两个字符串相等,则输出str1 is equal to str2。如果str1大于str2,则输出str1 is greater than str2

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C语言文件操作有啥优势