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 have the binary number 1010 1011. I know that this is AB in hex and I know that A = 10 and B = 11 in decimal. But how do I get from 10 and 11 in decimal to the final number of 171?

With hex I would do

             A            B
0xAB = (10 * 16^1) + (11 * 16^0) = 171

Can I do something similar with the decimal numbers to go from 10 and 11 to 171? Basically, I'm just looking for a fast way to convert any binary number without a calculator.

share|improve this question
What computer language? – Brad Rem Mar 24 '12 at 15:38
I'm using C for these things. – user1288263 Mar 24 '12 at 15:41
Excellent, so do you have code to show us for how you're trying to do your conversions? – Brad Rem Mar 24 '12 at 16:10
how do you store the number 1010 1011? – perreal Mar 24 '12 at 16:12
C convert hex to decimal or better yet Converting dec/binary – Brad Rem Mar 24 '12 at 16:12
show 2 more comments

4 Answers

up vote 3 down vote accepted

I don't think there's a much easier way than A × 16 + B.

share|improve this answer

Depending on what you are trying to do, and the the language you are using, you could use the shift-left operator and add the values together.

In C++:

unsigned short val_a = (0x1010 << 4);
unsigned short val_b = 0x1011;
unsigned short result = val_a + val_b;

The result is still an unsigned short int.

share|improve this answer

In C you can shift instead if multiplication to get AB from A and B:

int number = A << 4 + B;

if you store A as 1010 (decimal) and B as 1011, you can convert:

int bin2dec(unsigned int s){ 
  int v, p;
  for (v = 0, p = 1; s > 0; s=s>>1) { v = v+p*(s%2); v++; p*=2;}
  return v;
}

int number = bin2dec(A) << 4 + bin2dec(B);
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.