若随意输入一个字符串~用递归的方法实行字符串反序排列~
void digui(char str[],int n){ if(n==1) { printf("%c",str[0]); } else { printf("%c",str[n-1]); digui(str,n-1);
}}应该可以吧.