/**** 기존 strcpy()의 기본적인 사용법 *********************** #include #include void main() { const char temp1[8] = {"홍길동"}; char temp2[8]; strcpy(temp2,temp1); printf("temp1->%s\n",temp1); printf("temp2->%s\n",temp2); } *********************************************************/ /***** MyStrCpy의 구현 *********************************** #include void MyStrCpy(char* pDest_Str , const char* pSource_Str) { whil..