下列给定函数fun的功能是:先将s所指字符串中的字符按逆序存放到t所指字符串中,然后把s所指串中的字符按正序连接到t所指串之后。例如:当s所指的字符串为“ABCDE”时,t所指的字符串应为:”EDCBAABCDE”。”/********found*****/”之后所指的语句有错,请选择下列正确的语句替换。 void fun (char *s, char *t) { /************found************/ int i; sl = strlen(s); for (i=0; i t[i]=s[sl-i-1]; for (i=0; i<=sl; i++) t[sl+i] = s[i]; t[2*sl] = '\0'; }