下面函数的功能是()。
sss(s,t)
char *s,*t;
{
while((*s)&&(*t)&&(*t++==*s++));
return (*s-*t);
}
将字符串s复制到字符串t中
比较两个字符串的大小
求字符串的长度
将字符串s接续到字符串t中