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,

link|improve this question

You could try this: 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
feedback

5 Answers

up vote 7 down vote accepted

It seems like you are expecting int and unsigned int to be a 16-bit integer. That's apparently not the case. Most likely, it's a 32-bit integer - which is large enough to avoid the wrap-around that you're 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:

unsigned int x = 65529;
int y = (short) x;      //  If short is a 16-bit integer.

or alternatively:

unsigned int x = 65529;
int y = (int16_t) x;    //  This is defined in <stdint.h>
link|improve this answer
Oh right! What would be a way around this then? To get -7? – Nayefc Nov 29 '11 at 20:31
Use short instead? – Nayefc Nov 29 '11 at 20:32
If you can guarantee that short is a 16-bit integer, then yes, int y = (short)x; will work. Or you can use int16_t if your compiler has the <stdint.h> header. – Mysticial Nov 29 '11 at 20:33
@Nayefc As I said, you can check the size of your types by printing the value of sizeof(int) sizeof(short) or whichever you need – Szabolcs Nov 29 '11 at 20:34
1  
There is a mostly C-compliant way to do it: y = x < 32767 ? (int)x : (x > 32768 ? -(int)-x : -32768); (the only wrinkle is that -32768 is not necessarily representable as a signed int, so you have to decide how to treat that). – caf Nov 29 '11 at 21:50
show 4 more comments
feedback

You are expecting that your int type is 16 bit wide, in which case you'd indeed get a negative value. But most likely it's 32 bits wide, so a signed int can represent 65529 just fine. You can check this by printing sizeof(int).

link|improve this answer
feedback

@Mysticial got it. A short is usually 16-bit and will illustrate the answer:

int main()  
{
    unsigned int x = 65529;
    int y = (int) x;
    printf("%d\n", y);

    unsigned short z = 65529;
    short zz = (short)z;
    printf("%d\n", zz);
}

65529
-7
Press any key to continue . . .
link|improve this answer
feedback

To answer the question posted in the comment above - try something like this:

unsigned short int x = 65529U;
short int y = (short int)x;

printf("%d\n", y);

or

unsigned short int x = 65529U;
short int y = 0;

memcpy(&y, &x, sizeof(short int);
printf("%d\n", y);
link|improve this answer
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

int y = (int )(x | 0xffff0000u); // assumes 16 to 32 extension, x is > 32767

If speed is not an issue, or divide is fast on your processor,

int y = ((int ) (x * 65536u)) / 65536;

The multiply shifts left 16 bits (again, assuming 16 to 32 extension), and the divide shifts right maintaining the sign.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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