#include
#include
int main ()
{
char str[] = "I Love Clementine";
char key[] = "aeiou";
char *p;
printf ("Vowels in '%s': ",str);
p = strpbrk (str, key);
while (p != NULL) {
printf ("%c " , *p);
p = strpbrk (p + 1, key);
}
printf ("\n");
return 0;
}