1 2 3 4 5 6 7 8 9
... int j = 0; for(int i = m; i <= n; i++, j++) { *(word + j) = *(string+i); cout<<word[j]; } *(word + j) = '\0'; ...