GENERAL: COMPILER IGNORES 0XFD, 0XFE, 0XFF VALUES IN STRINGS
Information in this article applies to:
* C166 Compiler All Versions
* Cx51 Compiler All Versions
* C251 Compiler All Versions
QUESTION
I have a problem with the interpretation of Russian strings in the Keil C51 compiler. Some Russian characters are using the encoding 0xFD. It looks like this encoding is ignored by the compiler and is not included in the program code.
Example:
code char RussianString[] = "??? ????";
Why does this problem exist and how can I avoid this behavior?
ANSWER
The character encodings 0xFD, 0xFE, and 0xFF are used internally by the C compiler. The ANSI standard only requires support for ASCII characters in the range 0x00 - 0x7F.
You may insert these characters by using HEX encodings in the string as follows:
code char RussianString[] = "My Text" "xFD";
A simple text replacement which replaces all 0xFD characters with the string '" "xFD' should do the job.
还是不太明白什么意思,哪位大大能否解释直白一些,谢谢。
code char RussianString[] = "My Text" "xFD";
A simple text replacement which replaces all 0xFD characters with the string '" "xFD' should do the job.
http://www.keil.com/support/docs/2618.htm
GENERAL: COMPILER IGNORES 0XFD, 0XFE, 0XFF VALUES IN STRINGS
Information in this article applies to:
* C166 Compiler All Versions
* Cx51 Compiler All Versions
* C251 Compiler All Versions
QUESTION
I have a problem with the interpretation of Russian strings in the Keil C51 compiler. Some Russian characters are using the encoding 0xFD. It looks like this encoding is ignored by the compiler and is not included in the program code.
Example:
code char RussianString[] = "??? ????";
Why does this problem exist and how can I avoid this behavior?
ANSWER
The character encodings 0xFD, 0xFE, and 0xFF are used internally by the C compiler. The ANSI standard only requires support for ASCII characters in the range 0x00 - 0x7F.
You may insert these characters by using HEX encodings in the string as follows:
code char RussianString[] = "My Text" "xFD";
A simple text replacement which replaces all 0xFD characters with the string '" "xFD' should do the job.
code char RussianString[] = "My Text" "xFD";
A simple text replacement which replaces all 0xFD characters with the string '" "xFD' should do the job.
一周热门 更多>