2015年3月28日

摘要: /*v1*/void strcpy(char *s, char *t){ int i; i = 0; while((s[i] = t[i]) != '\0') i++;}/*v2*/void strcpy(char *s, char *t){ while((*s = *t) != ... 阅读全文
posted @ 2015-03-28 13:07 dotdog 阅读(192) 评论(0) 推荐(0) 编辑

导航