题目:补充完整代码,原字符串是ABCDEFG结果字符串为BCDEFGA
void fun(char *s) { char ch=*s; while(*s) { *s=*(s+1); s++; } *(s-1)=ch; }