The strpbrk() function is used to return a pointer to the character, or a null pointer if no character from s2 occurs in s1.
Answer: A
char *strpbrk(const char *s1,const char *s2);
The first occurrence in the string s1 of any character from the string s2 is done by strpbrk().