摘要: /*数组表示*/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*/vo... 阅读全文
posted @ 2013-06-21 09:53 欧小弟 阅读(160) 评论(0) 推荐(0) 编辑