Show how to write a constant in C, whose decimal value is 65 as
a. a hexadecimal constant
65/16 = 1 r1
1/16 = 0 r1
Hexadecimal constant = 11
b. an octal constant (in C)
65/8 = 8 r1
8/8 = 1 r0
1/8 = 0 r1
Octal constant = 101
Is this the right way to convert constants in C?
Csolution as simple arithmetic. You probably don't need to convert constants inC, you just need to display them in different ways -- an important distinction. – pavium May 9 '11 at 3:4965/8 = 8 r1and8/8 = 1 r0=80? I guess I'm confused as to where to stop. – raphnguyen May 9 '11 at 3:55