I am trying to convert 65529 from an unsigned int to a signed int. I tried doing a cast like this:
unsigned int x = 65529;
int y = (int) x;
But y is still returning 65529 when it should return -7. Why is that?
Thank you,
|
I am trying to convert
But Thank you,
| |||
|
feedback
|
|
It seems like you are expecting Note that there is no fully C-compliant way to do this because casting between signed/unsigned for values out of range is implementation-defined. But this will still work in most cases:
or alternatively:
| |||||||||||||
feedback
|
|
You are expecting that your | |||
|
feedback
|
|
@Mysticial got it. A short is usually 16-bit and will illustrate the answer:
| |||
|
feedback
|
|
To answer the question posted in the comment above - try something like this:
or
| |||
|
feedback
|
|
The representation of the values 65529u and -7 are identical for 16-bit ints. Only the interpretation of the bits is different. For larger ints and these values, you need to sign extend; one way is with logical operations
If speed is not an issue, or divide is fast on your processor,
The multiply shifts left 16 bits (again, assuming 16 to 32 extension), and the divide shifts right maintaining the sign. | ||||
|
feedback
|
y=(int)x<<(sizeof(int)*CHAR_BIT-16)>>(sizeof(int)*CHAR_BIT-16);. Should work on most platforms. – Alex Nov 29 '11 at 20:39