본문 바로가기

# IT, Computer Science/C , C++

CString <-> Char* 변환

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

--Char* -> CString
char szTime[100];
CString time;

time=(LPCSTR)(LPSTR)szTime;
time=szTime;




--CString -> Char*
CString strKey;
char site[256];

memset(site, NULL, 256);
sprintf(site, "%S", strKey.GetBuffer(1));