C 速查手冊

11.3.17 memcmp()

string.h函數 (function) memcmp() 類似 strncmp() ,比較兩個記憶體區段前 n 個字元 (character) 是否相等。

以下程式印出比較字串 (string) st ,函數 memcmp() 的回傳值 (return value)

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

int main(void)
{
    char s[] = "Time flies.";
    char t[] = "Time is money.";
    
    printf("%d\n", memcmp(s, t, 4));
    printf("%d\n", memcmp(s, t, 10));
    printf("%d\n", memcmp(t, s, 10));
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cmemcmp.c
    功能:示範 string.h 中函數 memcmp() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cmemcmp.c
$ a.out
0
-3
3
$

上一頁 11.3.16 memmove()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.3.18 memchr()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁