C 語言標準函數庫分類導覽 - string.h memchr()

string.h 的函數 memchr() 類似 strchr() ,找出某字元在某記憶體區段前 n 個字元第一次出現的位置。



以下程式印出字元 'n' 在字串 s 中出現的子字串
#include <stdio.h>
#include <string.h>

int main(void)
{
    char s[] = "imagination";
    
    printf("%s\n", memchr(s, 'n', 12));
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cmemchr.c
    功能:示範 string.h 中函數 memchr() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: