Suppose the following:
unsigned char foo = 3;
unsigned char bar = 5;
unsigned int shmoo = foo + bar;
Are foo
and bar
values guaranteed to be promoted to int
values for the evaluation of the expression foo + bar
-- or are implementations allowed to promote them to unsigned int
?
In section 6.2.5 paragraph 8:
For any two integer types with the same signedness and different integer conversion rank (see 6.3.1.1), the range of values of the type with smaller integer conversion rank is a subrange of the values of the other type.
In section 6.2.5 paragraph 9:
If an
int
can represent all values of the original type, the value is converted to anint
; otherwise, it is converted to anunsigned int
.
The guarantee that an integer type with smaller integer conversion rank has a range of values that is a subrange of the values of the other type seems dependent on the signedness of the integer type.
signed char
corresponds tosigned int
unsigned char
corresponds tounsigned int
Does this mean that the value of an unsigned char
is only guaranteed to be in the subrange of unsigned int
and not necessarily int
? If so, does that imply that an implementation could theoretically have an unsigned char
value which is not in the subrange of an int
?