#include #include int main () { char str[] ="Evo neki string"; char * temp; temp = strstr (str,"neki"); strncpy (temp,"ovaj",4); puts (str); return 0; }