#include #include int main() { using namespace std; char str[] = "Mississippi"; char* p = strpbrk( str, "sp"); if (p) { cout << p << '\n'; } }