I wanted to understand the use of _T("xyz")
in the code below:
#include<CString.h>
int main()
{
uint32_t xyz = 15;
LPCSTR Desc = "xyz value is : ";
CString Value;
Value = (LPCSTR)Desc + _T("xyz");
}
Will the above code display:
xyz value is : 15
or
xyz value is : xyz
How to display -
xyz value is : 15