Posted October 17, 201014 yr Hi, i have a decimal number in an int variable, which i want to convert to hex and save in a DWORD, ie: int a = 4660; -> == DWORD b = 1234; I was not able to find a simple way to do this conversion. It works via strtol or sprintf, but there has to be an easier way? After all, the int variable is stored in hex in memory... deep Edited October 17, 201014 yr by deepzero
October 17, 201014 yr Author b = a; sure, this is just about the conversion... if i have "int a = 4660", how can i convert it into a "dword b = 1234;" ? Whilst it is possible using strtol:/>http://www.cplusplus.com/reference/clibrary/cstdio/sprintf/ or sprintf/>http://www.cplusplus.com/reference/clibrary/cstdio/sprintf/ i was wondering whether there is a simpler way, because the int is stored hexadecimal in memory already.
October 17, 201014 yr do you even know what hexadecimal and decimal is? I guess you don't, use wikipedia. The thing you want to do is silly.
October 17, 201014 yr Author Hi, Oh, i do know what hex/dec is. I discussed this with metr0 in icq, and while presenting my problem i noticed....that there actually is no problem and everything works fine. He called that the "Demonstration Paradox" anyways, thanks to everyone involved & have a nice evening, deep0
October 18, 201014 yr Everything is stored in binary, you know 0's and 1's, hexadecimal is just a representation.
October 20, 201014 yr The question itself was dumb, what's there to understand? Even if it wasn't, if someone can't explain his problem properly, how does telling him so make anyone a smartass? I can't even see anyone yelling "newb pow roflol" // Hm. Did I just fall for the troll
Create an account or sign in to comment