This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compile Bug with special Chars?

Hi,

i want to use the the rapidXML Library in a project. I get the following issue on parsing special chars:

const char str[] = "deg = °";

prinft(str); //output is 'deg = °'

If i look in the array, i found that the special char '°' is expressed as 0xFFB0! Due to the ASCII Table this should be 0x00B0. Why is the compiler handling this in a different way?

Best regards 

Holger