谢谢
应该是这个了:
#include <stdio.h>
#include <string.h>
#include <conio.h>
void string_change(char str[])
{
char *p,*q;
p=str;
q=p+strlen(str)-1;
while(p<q)
{
char temp=*p;
*p=*q;
*q=temp;
p++;
q--;
}
}
int main()
{
char str[20];
puts("please input the string:");
gets(str);
string_change(str);
printf("the sorted of the string is:%s\n",str);
getch();
return 0;
}