我试图理解这行特定的代码。
我无法理解为什么需要 3 个赋值语句。我认为这是最低限度的必要条件,我似乎无法用我的思想去遵循它。
如果有人能用英语带我了解每一行的作用,那就太好了。
谢谢。
void to_upper(char *word) {
int index = 0;
while (word[index] != '\0') {
word[index] = toupper(word[index]);
index++;
}
}
int length(char *word) {
int index=0;
while (word[index] != '\0')
index++;
return index;
}
void reverse(char *word) {
int index, len;
char temp;
len = length(word);
for (index=0; index<len/2; index++) {
temp = word[index];
word[index] = word[len-1-index];
word[len-1-index] = temp;
}
}