In Kernighan & Ritchie, it says that "all printable characters are positive when though char datatype being signed or unsigned is machine-dependent."

Can somebody explain to me the meaning of this line ? My system has signed chars but even with a negative value say of -90, printf does print a character (even though its not a very familiar character).

link|improve this question

50% accept rate
It wouldn't surprise me if K&R were talking only ASCII characters. Note that all ASCII characters are (technically) positive integers in an 8-bit (or larger) representation, whether signed or not, since they are values in the range 0 to 127. – Mac Jul 18 '11 at 6:59
For a character you just take the least significant byte and treat it as unsigned. So -90 = 0xFFFFFFA6 = 0xA6 = +166. – Paul R Jul 18 '11 at 6:59
feedback

3 Answers

up vote 2 down vote accepted

ASCII character set defines codepoints from 0x00 to 0x7F. It doesn't matter if they are represented with unsigned or signed byte values since this range is common for both.

Printable characters are between 0x20 and 0x7E, which are all part of the ASCII. The term printable character does not define every possible character in the world that is printable. Rather it is defined inside the realm of ASCII.

Byte values from 0x80 to 0xFF are not defined in ASCII and different systems assign different characters to values in this range resulting in many different types of codepages which are identical in their ASCII range but differ in this range. This is also the range where values for signed and unsigned bytes differ.

The implementation of printf looks for a single byte value when it encounters a %c key in its input. This byte value may be signed or unsigned with respect to your point of view as the caller of printf function but printf does not know this. It just passes these 8bits to the output stream it's connected to and that stream emits characters within 0x00 and 0xff.

The concept of sign has no meaning inside the output pipeline where characters are emitted. Thus, whether you send a 255 or a -1, the character mapped to 0xFF in the specific codepage is emitted.

link|improve this answer
feedback

-90 as a signed char is being re-interpreted as an unsigned char, in which case it's value is 166. (Both -90 and 166 are 0xA6 in hex.)

link|improve this answer
feedback

That's right. All binary numbers are positive. Whether you treat it as negative or not is your own interpretation. Using the common two's compliment.

The 8-bit number: 10100110 is positive 166, which is greater that 128 (The maximum positive signed 8 bit number).

Using signed arithmatic the number 166 is -90.

You are seeing the character whose ascii value is 166.

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.