i fix it
and now it prints me only helloCode:char *new;
i=0;
len=strlen(t);
while(i<len && t[i]!='\0'){
if(t[i]== ' '){
last=i;
t[i]='\0';
printf(t);
}
i++;
new = &t[i];
}
can i drop it immediatly on the list know or i should use another array?
and i use pointer new to catch the new adress of the string "wor"
but how will make this for any string? I mean in the while loop in the if statement know i should check for the pointer new if has a space?

