Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to convert 32-bit Hex to integer in 'C'

seqBuf = "81BD82E8" This is the Hex value I'm getting and stored in a buffer

The corresponding value of that hex value is 2176680680

How to convert? Please help me....

Is there any function "strtoull()" as like strtoul()...

Thanks in advance...

share|improve this question
2  
what language is this in? – oadams Oct 26 '10 at 5:16
2  
I'm assuming you're looking for a C function? – Jeff Mercado Oct 26 '10 at 5:16
1  
Possible duplicate: stackoverflow.com/questions/1070497/… – muntoo Oct 26 '10 at 5:22

1 Answer

char *seqBuf = "81BD82E8", *end;
unsigned long x = strtoul(seqBuf, &end, 16);
printf("longVal= %u\n", x);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.