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