* Multiplication
In this section:
Precedence
4
Description
* produces the product of its two operands. The operands are taken as signed 32-bit integers, and the result is also a signed 32-bit integer.
Example
2*2 –> 4 -2*2 –> -4
4
* produces the product of its two operands. The operands are taken as signed 32-bit integers, and the result is also a signed 32-bit integer.
2*2 –> 4 -2*2 –> -4