CString → char* USES_CONVERSION; // ATL FUNCTION 사용 CString cstr = L"CString"; char* buffer = new char[cstr.GetLength()]; strcpy_s(buffer, sizeof(buffer), CT2A(cstr)); // strcpy는 unsafe라고 에러가 난다. char* → CString USES_CONVERSION; char chText[] = "char"; CString cstr; cstr = CA2T(chText);