#include #include #include int main(void){ char s[100]; char s2[10]; printf("Wprowadz tekst: "); gets(s); printf("Wprowadz fraze: "); gets(s2); char *search_ptr = strstr(s, s2); while(search_ptr){ printf("%s\n", search_ptr); search_ptr = strstr(search_ptr+1, s2); } return 0; }