how to convert to tchar[] to char[]..

link

19% accept rate
Duplicate: stackoverflow.com/questions/159442/… – Noldorin Nov 24 '09 at 10:41
feedback

2 Answers

TCHAR is a Microsoft-specific typedef for either char or wchar_t (a wide character).

Conversion to char depends on which of these it actually is. If TCHAR is actually a char, then you can do a simple cast, but if it is truly a wchar_t, you'll need a routine to convert between character sets. See the function MultiByteToWideChar()

link
I think we need to convert from wchar_t to char so we need WidecharToMultiByte!! – Ahmed Said Nov 24 '09 at 11:26
feedback

it depends on the character set (unicode or ANSI) (wchar_t or char), so if your are using ansi simply TCHAR will be char without any casting, but for unicode you have to convert from wchar_t to char, you can use WideCharToMultiByte

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.