8 lines
118 B
C
8 lines
118 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
printf( "%s\n", strstr("This is an example", "is") );
|
||
|
}
|