반응형
CString -> char *
CString spi = _T("123");
CString spi = _T("123");
char temp[100];
WideCharToMultiByte(CP_ACP, 0, spi.GetBuffer(spi.GetLength())
, spi.GetLength(), temp, spi.GetLength(), NULL, NULL);
i_spi = atoi(temp);
char * --> CString
char ss[] = "Hello";
CString str;
str.Format("%s", ss);
(Format대신에 GetBuffer()를 써도 됩니다.)
, spi.GetLength(), temp, spi.GetLength(), NULL, NULL);
i_spi = atoi(temp);
char * --> CString
char ss[] = "Hello";
CString str;
str.Format("%s", ss);
(Format대신에 GetBuffer()를 써도 됩니다.)
반응형
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."