hi all,
i want to convert string like "\x52\x49" to ascii

when i use this code in Turbo C :
Code:
unsigned char test[] = "\x52\x49";
printf("%s",test);
i've gud result is : RI

but when i use in Visual C++ , with m_Input and m_Output are variables from text box
Code:
unsigned char test [] = m_Input;
m_Output = test;
i've error cus it cant convert char to CString.
so how can i fix this prob ?