I can't use string copy or mem copy because I need to copy in the middle.
i am iterating through a string, and when I get to the word i want, i need to copy that to a holding array. So from i to j for example.
char *string_1[50];
char *string_2[50];
...
string_2 = string_1[i-j] //copy from 10-15 for example