Cirillic output in VC 2006

Do have a way, my program on C++ ,to give Cirillic output in VC 2006.
If I just write some like:
 
cout<<"Кво става ";


the program output don't understandable text.
sadly -- C++'s built-in support of Unicode is nonexistant as of the current standard. Therefore outputting anything but ascii is a tremendous chore.

Here's a thread where someone was trying to do the exact same thing as you. I found a solution which worked on my machine (it's discussed at the end of the thread), but iirc the original poster had problems getting it to work.

Link:

http://cplusplus.com/forum/windows/9797/
Last edited on
Topic archived. No new replies allowed.