Avoid Non-usascii Literal Strings in Source Code
It’s generally not a good idea to use literal strings containing non-usascii chars in your source code, regardless of programming language. For example, in C++ a literal string would be like this: const char *s = “44ης Οδός, αρ.2”; Or perhaps in another programming language, such as DataFlex, it looks like this: Move “44ης Οδός, αρ.4” to streetAddr If you […]