【参考答案】void Antitonevalue(cha r* father, char* child) { int i ; char source[100]; int j = 0; while(father[j]) //放入source ,[j] 为长度{ source[j] = father[j]; j++; if(j > 99) return; } source[j] = ' '; for(i=0; i<j; i++) child[i] = source[j-i-1]; // 反序child[i] = ' '; }



