Tagged Questions
0
votes
3answers
90 views
How to concat an int to a wchar_t* in C++?
I have to create and write on N files, everyone must have an integer ending to identificate it.
This is my piece of code:
for(int i=0; i<MAX; i++)
{
uscita.open("nameFile"+i+".txt", ...
0
votes
3answers
2k views
Convert char* to wchar* in C
I would like to convert a char* string to a wchar* string in C.
I have found many answers, but most of them are for C++. Could you help me?
Thanks.
0
votes
1answer
856 views
How to convert 'const wchar*' to 'const char*' on Mac OS X?
Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X?
Kat