1.strcpy拷贝函数
#include <stdio.h> char *mystrcpy(char *str, const char *ptr) { char *temp = str; while((*str++ = *ptr++) != '