C++ Programming/Code/Standard C Library/Functions/strpbrk
strpbrk
Syntax |
#include <cstring>
char * strpbrk( const char *str, const char *ch );
|
The function strpbrk() returns a pointer to the first occurrence of any character within ch in str, or NULL if no characters were not found.
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/strpbrk%20