So I know that the difference between a signed and unsigned int is that a bit is used to signify if the number if positive or negative, but how does this apply to a char? How can a character be positive or negative?
|
|
There's no dedicated "character type" in C language. It is true that (as the name suggests) The only general difference between |
|||||||
|
|
There are three char types: (plain) * Technically, a char can be any size as long as |
|||
|
|
|
A 'signed char' is a signed value which is typically smaller than, and is guaranteed not to be bigger than, a 'short'. An 'unsigned char' is an unsigned value which is typically smaller than, and is guaranteed not to be bigger than, a 'short'. A type 'char' without a signed or unsigned qualifier may behave as either a signed or unsigned char; this is usually implementation-defined, but there are a couple of cases where it is not:
Part of the reason there are two dialects of "C" (those where 'char' is signed, and those where it is unsigned) is that there are some implementations where 'char' must be unsigned, and others where it must be signed. |
|||
|
|
|
The same way how an |
|||
|
|
|
The same way -- e.g. if you have an 8-bit char, 7 bits can be used for magnitude and 1 for sign. So an unsigned char might range from 0 to 255, whilst a signed char might range from -128 to 127 (for example). |
|||
|
|
|
Representation is the same, the meaning is different. e.g, 0xFF, it both represented as "FF". When it is treated as "char", it is negative number -1; but it is 255 as unsigned. When it comes to bit shifting, it is a big difference since the sign bit is not shifted. e.g, if you shift 255 right 1 bit, it will get 127; shifting "-1" right will be no effect. |
|||
|
|
|
This because a *: it can be also unsigned, it actually depends on the implementation I think, in that case you will have access to extended ASCII charset provided by the encoding used |
|||
|
|