C++
Junior Member level 3
I've already found this on the net
but it doesn't work . . . so is there any other way to print international characters in console using C++?
Code:
ostream& operator<<(ostream & os, char* szSource) {
TCHAR szDestination[260] = "";
CharToOem(szSource, szDestination);
printf(szDestination);
return os;
}
but it doesn't work . . . so is there any other way to print international characters in console using C++?