I have found that the C99 standard have a statement which denies the compatibility between the type char and the type signed char/unsigned char.
Note 35 of C99 standard:
CHAR_MIN, defined in limits.h, will have one of the values 0 or SCHAR_MIN, and this can be used to distinguish the two options. Irrespective of the choice made, char is a separate type from the other two and is not compatible with either.
My question is that why does the committee deny the compatibility? What is the rationale? If char is compatible with signed char or unsigned char, will something terrible happen?
charis made compatible with one of them on your machine, it would be compatible with the other one on some other systems. It all depends on the underlying hardware. The committee decided to make it three different types as a compromise. – Bo Persson Oct 7 '12 at 14:36charhas the same representation and values as eithersigned charorunsigned char. For efficiency reasons, C uses whatever the underlying hardware provides. That means acharwill be slightly different on different computers. A choice was made to make the char types three different types, even though two of them are otherwise exactly the same (but not the same two on all systems). For other types, likeint,signed intandintare the same type, it is justcharthat is special. – Bo Persson Oct 8 '12 at 9:03