答案为什么是AGAAGAG
#include <stdio.h>#include <stdlib.h>
void fun(char *w,int m)
{char s, *p1,*p2;
p1=w;p2=w+m-1;
while(p1<p2)
{s=*p1++;*p1=*p2--;*p2=s;}
}
main()
{char a[]="ABCDEFG";
fun(a,strlen(a));puts(a);
system("PAUSE");
return 0;
}
有点想不通,前面两个AG还是可以理解的,后面接着的AAGAG没法理解。