what is the purpose of signed char if both char and signed char ranges from -127 - 127? what is the place where we use signed char instead of just char?
| show 11 more comments |
Use Possibly related: What does it mean for a char to be signed? |
|||||||||||
|
|
It is implementation defined whether plain
( |
|||
|
|
Note that on many systems, As for your question: Well, you would use it when you would need a small signed number. |
|||||||||||||||||
|
|
See lamia,
First I want to prepare background for your question.
char data type is of two types: unsigned char; signed char; (i.e. INTEGRAL DATATYPES)
.................................................
Exaplained as per different books as:
signed char 1byte –128 to 127
unsigned char 1byte 0 to 255
one more thing 1byte=8 bits.(zero to 7th bit) As processor flag register reserves 7th bit for representing sign(i.e. 1=+ve & 0=-ve) -37 will be represented as 1101 1011 (the most significant bit is 1), +37 will be represented as 0010 0101 (the most significant bit is 0). .................................................
similarly for char last bit is by default taken as signed This is why? Because char also depends on ASCII codes of perticular charectors(Eg.A=65). In any case we are using char and using 7 bits only. In this case to increase memory range for char/int by 1 bit we use unsigned char or unsigned int; Thanks for the question. |
|||
|
|

CHAR_BITis equal to8! – Lightness Races in Orbit Aug 9 '11 at 13:56signed char. It is not required to represent -128. Obviously if it's 2's complement, then it does. Since 2's complement is near-enough ubiquitous people tend to treat it as guaranteed, but it isn't. – Steve Jessop Aug 9 '11 at 14:04[2003: 3.9.1/7]"Types bool, char, wchar_t, and the signed and unsigned integer types are collectively called integral types. A synonym for integral type is integer type. The representations of integral types shall define values by use of a pure binary numeration system. [Example: this International Standard permits 2’s complement, 1’s complement and signed magnitude representations for integral types. ]" – Lightness Races in Orbit Aug 9 '11 at 14:14