Non-English String Literals in C++ Source Code
When a C++ compiler compiles a C++ source file, it must process the bytes according to a character encoding and that is typically ANSI. ANSI is not a character encoding, it is simply a keyword that says “Use the default multi-byte character encoding for this computer based on its current locale.” Therefore, if your program is originally written in Poland […]