Hi,

I have written a C++ console app using VS2005 which has these two lines.

CString csSrc = _T("C:\\管理者"); // Japanese characters
char* pDst = T2A(csSrc);

when I run this program and watch the values during debugging, pDst shows "C:\管ç*者".

what am I missing here ?
what changes should I make so that pDst points to "C:\\管理者".

Thanks in advance.