Type of char multiply by another char

后端 未结 1 1214
小蘑菇
小蘑菇 2021-01-23 08:39

What is the type of the result of a multiplication of two chars in C/C++?

unsigned char a = 70;
unsigned char b = 58;
cout << a*b << endl; // prints          


        
相关标签:
1条回答
  • 2021-01-23 09:14

    According to the C++ Standard (4.5 Integral promotions)

    1 A prvalue of an integer type other than bool, char16_t, char32_t, or wchar_t whose integer conversion rank (4.13) is less than the rank of int can be converted to a prvalue of type int if int can represent all the values of the source type; otherwise, the source prvalue can be converted to a prvalue of type unsigned int.

    and (5 Expressions)

    10 Many binary operators that expect operands of arithmetic or enumeration type cause conversions and yield result types in a similar way. The purpose is to yield a common type, which is also the type of the result. This pattern is called the usual arithmetic conversions, which are defined as follows:

    ....

    • Otherwise, the integral promotions (4.5) shall be performed on both operands.61 Then the following rules shall be applied to the promoted operands:

    and at last (5.6 Multiplicative operators)

    2 The operands of * and / shall have arithmetic or unscoped enumeration type; the operands of % shall have integral or unscoped enumeration type. The usual arithmetic conversions are performed on the operands and determine the type of the result.

    Types char and short have conversion ranks that are less than the rank of the type int.

    0 讨论(0)
提交回复
热议问题