How can I input text into TCHAR* argv[]?
TCHAR* argv[]
OR: How can I convert from char to TCHAR* argv[]?
char
char randcount[] =
One way to do is:
char a[] = "Hello world"; USES_CONVERSION; TCHAR* b = A2T(a);