strpbrk in C language

The C strpbrk function is a String Function, which is used to find the first character in a first string that matches any character in a second string. The syntax of the strpbrk in C Programming language is char *strpbrk(const char *str1, const char *str2); or we can simply write strpbrk as: strpbrk(str1, str2); strpbrk in C … Read more