![]() |
#2
apull2021-03-06 15:21
|
# 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 ( )
{
}
}
上面空的地方应该填什么