Hi I am quite a new programmer and I was just wondering if there's anyone out there who could help me...
I need to write a procedure to input a decimal number via a suitable const parameter and output the hexadecimal equivalent to the console window...
Now, I can do the maths and figure I need to use a loop of some type, but can anyone help me on how i can store the cumbers separately to put together at the end of the procedure...?
you need to mod the number by 16 to get the remainder and then div by 16 and repeat with new num... how do you store the remainders and convert them into the hex equivalent without having lines and lines of code?