I need to convert from two's complement to sign-magnitude in C using only the operators
! ~ & ^ | + << >>
My approach is to find sign:
int sign = !(!(a>>31));
basically, if sign == 1
. I want to flip the number and add 1 else just want to display the number.
The thing is I can't use any loops, if statements etc. This is what I'm working on:
int s_M = ((((a+1)>>31)^sign)+1)&sign;
any suggestions?
See Question&Answers more detail:os