strpbrk
strpbrk is a function in the C standard library that searches a string for the first occurrence of any character from a specified set. It is declared in string.h with the prototype: char *strpbrk(const char *s, const char *accept);
The function scans the string s from the start and returns a pointer to the first character
A common use of strpbrk is to locate delimiter characters in a string, for example to identify
Strpbrk is part of the ISO C standard library and is widely available on platforms with a