单选题 下面函数的功能是 ____
sss(s,t)
char*s,*t;
{while(*s);
while(*t)
*(s++)=*(t++);
return s;
}
【正确答案】 D
【答案解析】[解析] 本题考查指针变量的运用。本题中的函数数实质上是将字符串t续接到字符串s中。