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

string.h 的函數 strchr() ,需要一個字串及一個字元當作參數,然後搜尋字元在字串中第一次出現的位置,回傳該位置的指標。



以下程式比較在字串 s 中尋找字元 t
#include <stdio.h>
#include <string.h>

int main(void)
{
    char s[] = "Rome was not built in a day.";
    char t = 'a';
    char *test;
    
    test = strchr(s, t);
    printf("%s\n", test);
     
    return 0;    
}

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


編譯後執行,結果如下



您可以繼續參考


沒有留言: