Jump to content
Tuts 4 You

(c++) int 2 hex (simple way?)


deepzero

Recommended Posts

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... :verymad:

deep :)

Edited by deepzero
Link to comment
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.

:)

Link to comment

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. :thumbsup:

He called that the "Demonstration Paradox" :teehee:

anyways, thanks to everyone involved & have a nice evening,

deep0 :)

Link to comment

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 :unsure:

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...