050. 문자열 함수를 직접 만들어보자. ◈ 이 글은 강의를 위하여 제가 직접 작성한 내용입니다. 따라서 퍼가실 경우, 출처를 명확히 해주시기 바랍니다!! ◈ This ariticle was written by me for teaching. So if you want to copy this article, please clarify the source!! #include #include #include using namespace std; void my_strcpy_s(char* dest, int countofdest, char* src) { int srclength = strlen(src); assert(countofdest > srclength && "buffer is too small."); for(int i=0; i < srclength.. 더보기 이전 1 ··· 54 55 56 57 58 59 60 ··· 176 다음