/* Searching with strstr(). */ #include #include main() { char *loc, buf1[80], buf2[80]; /* Input the strings. */ printf("Enter the string to be searched: "); gets(buf1); printf("Enter the target string: "); gets(buf2); /* Perform the search. */ loc = strstr(buf1, buf2); if ( loc == NULL ) printf("No match was found."); else printf("%s was found at position %d.", buf2, loc-buf1); return(0); }