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

溫馨提示×

strcmp在c語言中怎么用

小億
84
2023-12-21 11:47:16
欄目: 編程語言

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

0
辽阳市| 同心县| 清远市| 门头沟区| 页游| 遂宁市| 即墨市| 大同县| 教育| 桃江县| 琼中| 广宁县| 博乐市| 鄄城县| 扎囊县| 塔城市| 孝义市| 进贤县| 松潘县| 康马县| 巴马| 大同市| 唐海县| 巴林左旗| 浙江省| 康平县| 彰武县| 金秀| 新竹市| 江安县| 九台市| 高尔夫| 拉萨市| 乐昌市| 绍兴市| 乌拉特后旗| 三亚市| 沂南县| 安塞县| 惠安县| 泊头市|