Hi, I have a simple code
char t = (char)(3000);
Then value of t is -72. The hex value of 3000 is 0xBB8. I couldn't understand why the value of t is -72.
Thanks for your answers.
|
|
Hi, I have a simple code char t = (char)(3000); Then value of t is -72. The hex value of 3000 is 0xBB8. I couldn't understand why the value of t is -72. Thanks for your answers.
|
||||
|
|
|
And so the hex value of the char (which, by the way, appears to be signed on your compiler) is 0xB8. If it were unsigned, 0xB8 would be 184. But since it's signed, its actual value is 256 less, i.e. -72. If you want to know why this is, read about two's complement notation. |
||
|
|
|
|
0xB8 as a signed char is -72 in decimal. Casting the int (0x0BB8) to a char is stripping off the high bits and leaving the least significant 8 bits (0xB8). |
||
|
|
|
|
A |
||||||||||
|
|
|
This is happening because 3000 is too big a value and causes an overflow. Char is generally from -128 to 127 signed, or 0 to 255 unsigned, but it can change depending upon the implementation. |
||||||
|
|
|
In your case |
||
|
|
|
|
As specified, the 16-bit hex value of 3000 is char, on the other hand, is probably not a 16-bit type. Again, this is implementation specific, but from your posted results it appears to be 8-bits, which is not uncommon. So while your program has allocated 8-bits of memory for your value, you're storing twice as much information in that memory. When your program retrieves this value later, it will only be pulling the first stored octet, in this case Assuming two's complement (technically implementation specific, but a reasonable assumption), the hex value of Therefore, you get |
|||
|
|
|
|
I don't know about Mac. So my result is -72. As I know, MAC is using Big Endian, so does it affect the result? I dont have any MAC computer to test so I want to know from MAC people. |
||
|
|
|
|
A char is (typically) just 8 bits, so you cant store values as large as 3000 (which would require at least Since 3000 is 0xBBA, it requires two bytes, one 0x0B and one which is 0xBA. If you try to store it in a single byte, you will just get one of them (0xBA). And since a byte is (typically) signed, that is -72. |
||||||
|
|
|
To convert an int to a string (untested):
|
||
|
|
|
i've been thought in school that there is no need to convert from int to char in C, cuz they are kinda the same :S |
||||
|
|
|
oh, i get it, it's overflow, it's like char is only from -256 to 256 or something like that i'm not sure, like if you have a var which type's max limit is 256 and you add 1 to it, than it becomes -256 and so on |
||||||||||||||||||
|