Hello, I have to design a program which takes 4 integer values from the user as well as a 2 digit hex value. The program then performs some arithmetic based upon that hex value's binary equivalent. I know how to write most of the program, however, I am not sure how to convert my hex value into binary. I read it in using %x and store that value in an unsigned int. How do I take this value and convert it to binary or does storing it as an unsigned int already handle that ?