BLOG ARTICLE 프로그래밍/C++ | 46 ARTICLE FOUND

  1. 2008.11.21 CString -> (char*) 변환

CString a;
char* b;
a="test";
b=a.getBuffer(a.getLength());
AND