In C language operands of almost all arithmetic operators are subjected to implicit conversions called usual arithmetic conversions or, in this case, integer promotions. Operands of type char
are promoted to type int
and the actual addition is performed within the domain of int
(or unsigned int
, depending on the properties of char
on that platform). So your a + b
is actually interpreted as (int) a + (int) b
. The result has type int
and sizeof(int)
is apparently 4 on your platform. That 4 is what you see.
And don't use %d
to printf
the result of sizeof
. The result of sizeof
has type size_t
, while %d
requires an int
argument. So, either use the proper format specifier
printf("%zu
", sizeof(a+b));
or at least cast the argument if you are sure it fits
printf("%d
", (int) sizeof(a+b));
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…