ISO C states that hexadecimal escape sequences are only terminated by a non-hexadecimal number. This is idiotic, but it is the standard.
The solution is to trick the IDE into ending the escape sequence for you:
printf("200 %4.1f\xD2" "C", ...);
As long as there is a space between the D2" and the "C" you shouldn't receive any warnings.
Message Edited by Lundin on 2009-06-11 03:40 PM