We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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