+ 1
Unicode
I was wondering if c++ supported Unicode And if so how do you use it?
2 Respuestas
0
It does! On Linux, just type it in as normal.
On windows you have to use wide charaters i believe.
std::wcout<<"String a ling"<<endl;
instead of
std::cout<<"Random Tandem"<<endl;
0
thanks for your help Tim Palmer