How can I display Greek characters and strings, using plain C++ and VS 2008 Express?
Here is the code:
#include <iostream>
int main()
{
std::cout << 'Φ' << std::endl;
std::cout << 'Ξ' << std::endl;
std::cout << "Καλημέρα" << std::endl;
std::cin.get();
return 0;
}
by the way i am getting warnings like below
1>d:\02_visualstudio2008projects\displaygreek\displaygreek\displaygreek.cpp(5) : warning C4566: character represented by universal-character-name '\u03A6' cannot be represented in the current code page (1252)