使用函数实现字符串复制,将输入字符串t中的全部字符复制到字符串s中。
# include <stdio.h>#define MAXS 80
void cpy( char *s, char *t );
int main( )
{
char s[MAXS], t[MAXS];
scanf("%s", t );
cpy (s, t);
printf("%s\n", s);
}
void cpy( char *s, char *t )
{
while ( )
{
}
}
上面空的地方应该填什么