9 lines
172 B
C
9 lines
172 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
printf( "%d\n", strspn( "out to lunch", "aeiou" ) );
|
||
|
printf( "%d\n", strspn( "out to lunch", "xyz" ) );
|
||
|
}
|