i want to enter a text into TCHAR* argv[]
, how its possible to do.
OR how to convert from a character to TCHAR* argv[]
.
Please help
char randcount[]="Hello world";
want to convert to TCHAR* argv[]
i want to enter a text into TCHAR* argv[]
, how its possible to do.
OR how to convert from a character to TCHAR* argv[]
.
Please help
char randcount[]="Hello world";
want to convert to TCHAR* argv[]
One way to do is:
char a[] = "Hello world";
USES_CONVERSION;
TCHAR* b = A2T(a);