How can I input text into TCHAR* argv[]?
TCHAR* argv[]
OR: How can I convert from char to TCHAR* argv[]?
char
char randcount[] = "Hello world"; TCHAR* argv[]; argv = convert(randcount);
One way to do is:
char a[] = "Hello world"; USES_CONVERSION; TCHAR* b = A2T(a);
2.1m questions
2.1m answers
60 comments
57.0k users