• 2021-04-14
    下面函数的功能是________。 sss(char *s, char *t) { int i=0;while( t[i]){ s[i]=t[i]; i++ ; } s[i]= '\0'; }? 求字符串的长度|比较两个字符串的大小|将字符串s复制到字符串t中|将字符串t复制到字符串s中