Time complexity of c program

后端 未结 0 965
猫巷女王i
猫巷女王i 2021-01-12 03:19

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

相关标签:
回答
  • 消灭零回复
提交回复
热议问题