c++ strcpy질문입니다
글쓴이: cheongpark / 작성시간: 수, 2012/09/05 - 3:19오후
다른 프로그래밍 커뮤니티에 올라왔던 질문인데요, 혹시나 해서 실행시켜봤는데 이해가 안가는 부분이 있어서 올려봅니다.
// testStrcpy.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include <cstring> #include <stdio.h> #include <ostream> #include <istream> using namespace std; void currAdd(char *); int _tmain(int argc, _TCHAR* argv[]) { char str[20]="123"; char * ptrStr; ptrStr=str; puts(str); currAdd(str); strcpy(str+1,str); puts(str); currAdd(str); strcpy(str+1,str); puts(str); currAdd(str); strcpy(str+1,str); puts(str); currAdd(str); strcpy(str+1,str); puts(str); currAdd(str); system("PAUSE"); return 0; } void currAdd(char * address) { cout<<"curr address : "<<&address<<endl; }
다음과 같은 코드를 실행했을 때 결과는
123
1123
11123
111123
...
이 되어야 맞는 것 같은데 결과는
123
1123
111233
1111223
...
으로 조금씩 어긋납니다.
왜이런지 아시는분 설명좀 부탁드립니다.
Forums:
cplusplus 사이트에서 strcpy 함수 검색해보면
cplusplus 사이트에서 strcpy 함수 검색해보면
Copy string
Copies the C string pointed by source into the array pointed by destination, including the terminating null character.
To avoid overflows, the size of the array pointed by destination shall be long enough to contain the same C string as source (including the terminating null character), and should not overlap in memory with source.
자세히는 잘모르겠는데
마지막에 shoud not overlap in memory with source 를 볼 수 있습니다.
source와 destination 의 메모리영역이 겹치면 안된다고 하네요 :D
strcpy memory overlap 관련해서 검색해보면
strcpy 함수의 대부분의 구현이 실행은 되지만, 문제를 야기할 것이다 라고 하네요
메모리 Overlap에 대해서는 Undefined 되어 있는 것 같습니다.
답변 감사합니다. 괜찮으시다면 답변을 다른 커뮤니티에
답변 감사합니다. 괜찮으시다면 답변을 다른 커뮤니티에 공유해도 될까요?
넹
저도 검색해서 찾은거라 -_-a
댓글 달기