91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
鹰潭市| 沧州市| 东乌珠穆沁旗| 广昌县| 固始县| 平潭县| 三门县| 于都县| 札达县| 凌源市| 鹤庆县| 安义县| 刚察县| 金寨县| 砚山县| 井陉县| 莲花县| 左权县| 安达市| 新安县| 沭阳县| 偃师市| 清丰县| 大方县| 石门县| 浦城县| 梁平县| 中山市| 新乡市| 兴宁市| 和田县| 武义县| 伊春市| 成安县| 华阴市| 海阳市| 集贤县| 措美县| 进贤县| 宁陕县| 法库县|