/*数组表示*/void strcpy(char *s, char *t){ int i; i=0; while ((s[i]=t[i])!='\0') { s++; t++; }}
/*指针1*/void strcpy(char *s, char *t){ while((*s=*t)!='\0') { s++; t++; }}
/*指针2*/void strcpy(char *s, char *t){ while((*s++=*t++)!='\0') ;}
/*指针3*/void strcpy(char *s, char *t){ while((*s++=*t++)!) ;}