Non-ASCII characters in source code are parsed in an implementation defined way. Use either hex sequences or the newer (post-c99 or C++11) unicode character literals and use their UTF-8/16/32 codepoint representations.
This is implementation defined behavior, so unless you are absolutely sure you compiler does what you expect, don't do this.
Non-ASCII characters in source code are parsed in an implementation defined way. Use either hex sequences or the newer (post-c99 or C++11) unicode character literals and use their UTF-8/16/32 codepoint representations.
This is implementation defined behavior, so unless you are absolutely sure you compiler does what you expect, don't do this.