String-Handling Functions
With the declaration and initialization:
s1[10] ="The ";
s2[10] = "e";
The function (with string.h included)
strstr(s1, s2) return a pointer to character where s2 is part of s1 (s2 is a substring of s1). For this example, it returns the address of character 'e' is string s1.