Hello, I have some problems with cyrillic in Dev-C++ version 4.9.9.2
My operation system is Windows Vista.
In program all cyrillic looked good, but when run program all cyrillic are looked bed(
My english is very poor, I'm sorry)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2007-12-02
Dev-C++ is a GUI application so has the capability to display Unicode character sets. Console mode applications are limited to 8bit character sets. In theory it is possible to display different character sets through teh use of 'code pages', but to be honest I have never quite figured out how to make this work. The simplest solution is to create a GUI application. Writing text to a window requires a little more work than console output, but offers greater flexibility.
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I have some problems with cyrillic in Dev-C++ version 4.9.9.2
My operation system is Windows Vista.
In program all cyrillic looked good, but when run program all cyrillic are looked bed(
My english is very poor, I'm sorry)
Dev-C++ is a GUI application so has the capability to display Unicode character sets. Console mode applications are limited to 8bit character sets. In theory it is possible to display different character sets through teh use of 'code pages', but to be honest I have never quite figured out how to make this work. The simplest solution is to create a GUI application. Writing text to a window requires a little more work than console output, but offers greater flexibility.
Clifford