函数名: 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,str2);if(ptr){printf(strpbrkfoundfirstcharacter:%c\n,*ptr);}else{printf(strpbrkdidn'tfindcharacterinset\n);}return0;}运行结果:strpbrkfoundfirstcharacter:d