// This is test program for strstr function from string.h #include #include int main() { char s[] = "Hi.Hello.Hey!"; puts(strstr(s, ".")); return 0; }