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

溫馨提示×

c語言strcmp的用法是什么

小億
107
2023-11-13 12:10:12
欄目: 編程語言

strcmp是C語言中的一個字符串比較函數,用于比較兩個字符串是否相等。

函數原型如下:

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

參數s1和s2分別是要比較的兩個字符串。

如果字符串s1和s2相等,即每個對應位置的字符都相等,則返回值為0。

如果字符串s1大于s2,則返回值大于0。

如果字符串s1小于s2,則返回值小于0。

下面是一個使用strcmp函數的示例:

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

int main() {
    char str1[] = "Hello";
    char str2[] = "World";

    if (strcmp(str1, str2) == 0) {
        printf("str1 and str2 are equal\n");
    } else if (strcmp(str1, str2) > 0) {
        printf("str1 is greater than str2\n");
    } else {
        printf("str1 is smaller than str2\n");
    }

    return 0;
}

輸出結果為:

str1 is smaller than str2

這是因為字符串"Hello"在字母順序上小于字符串"World"。

0
天等县| 乌恰县| 叶城县| 海门市| 闽清县| 霍州市| 新疆| 绵阳市| 宜昌市| 嘉兴市| 略阳县| 东台市| 文山县| 民和| 定兴县| 南阳市| 安塞县| 恭城| 邯郸县| 金湖县| 岳西县| 光山县| 新田县| 衡山县| 奉新县| 休宁县| 土默特右旗| 噶尔县| 沾益县| 南丰县| 赤城县| 武定县| 樟树市| 平山县| 梧州市| 罗定市| 淮滨县| 涿州市| 宁津县| 湟源县| 河津市|