I have this code:
for (int i = strlen(str) -1; i >= 0; i--) if (str[i] == \'\\t\') str[i] = str[i+1];
And I don\'t know how