19 lines
365 B
C
19 lines
365 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
char *p;
|
|
char *buffer;
|
|
char *delims = { " .," };
|
|
|
|
buffer = strdup( "Find words, all of them." );
|
|
printf( "%s\n", buffer );
|
|
p = strtok( buffer, delims );
|
|
while( p != NULL ) {
|
|
printf( "word: %s\n", p );
|
|
p = strtok( NULL, delims );
|
|
}
|
|
printf( "%s\n", buffer );
|
|
}
|