I'm having problem when i want to print Guillemet («) with cout, the print result in console is ½. I wonder if there are ways to make the print result become "«".
#include <iostream>
int main()
{
std::cout << "«" << std::endl;
return 0;
}
I use Code::Blocks 16.01 (MinGW) on Windows 10 x64.