用自定义函数写一个strcat()函数,void mystrcat(char *dest ,char *src){ while(*src!='\0') { 。。。。 } while(*dest!='\0') { 。。。。 }
}