13 lines
192 B
C
13 lines
192 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
char *p = "Find all vowels";
|
|
|
|
while( p != NULL ) {
|
|
printf( "%s\n", p );
|
|
p = strpbrk( p+1, "aeiouAEIOU" );
|
|
}
|
|
}
|