亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C語言字符串如何比較大小

小億
143
2023-11-28 00:39:37
欄目: 編程語言

在C語言中,可以使用strcmp函數來比較兩個字符串的大小。strcmp函數的原型為:

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

該函數將兩個字符串作為參數,如果str1小于str2,則返回一個負整數;如果str1等于str2,則返回0;如果str1大于str2,則返回一個正整數。

示例代碼如下:

#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 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",因為在字典序中,“hello"小于"world”。

0
专栏| 鸡东县| 凌海市| 高阳县| 江陵县| 涡阳县| 金寨县| 牙克石市| 黄山市| 沅陵县| 布拖县| 五峰| 武强县| 山阴县| 青河县| 江川县| 张家界市| 莆田市| 定州市| 得荣县| 盐城市| 阿克陶县| 开封市| 巴林右旗| 宁远县| 龙川县| 禄丰县| 文山县| 溆浦县| 连城县| 扎赉特旗| 丰原市| 吉隆县| 阳朔县| 元谋县| 平阴县| 加查县| 平顺县| 齐齐哈尔市| 旺苍县| 天等县|