函數名: strpbrk頭檔:<string.h>函數原型: char *strpbrk(const char *str1, const char *str2);功 能: 比較字串str1和str2中是否有相同的字符,但不包括結束符'\0'參數: const char *str1 要進行尋找的目標字串const char *str2 要找的字串傳回值:傳回指向str1中第一個符合的字元的指針,若查找失敗,則傳回NULL程式例:在字串str1中尋找第一個屬於字串str2中的任何一個字串的位置。 #include<string.h>#include<stdio.h>intmain(void){char*str1=www.dotcpp.com;char*str2=cde;char*ptr=strpbrk(str1,str 2);if(ptr){printf(strpbrkfoundfirstcharacter:%c\n,*ptr);}else{printf(strpbrkdidn'tfindcharacterinset\n);}return0;}運行結果: strpbrkfoundfirstcharacter:d