Hello, I have a little problem displaying a char to an hex value.
char t; t = 0x01; printf("%x",t);
%x expects an int but t is a char. Jon