#include #include int main () { char s0[] = "string"; char s1[] = "str"; if (strstr(s0, s1)) printf("I've find %s in %s\n", s0, s1); return 0; }