+ Addition
In this section:
Precedence
5
Description
The + addition operator produces the sum of the two operands which surround it. The operands are taken as signed 32-bit integers, and the result is also a signed 32-bit integer.
Example
92+19 –> 111 -2+2 –> 0 -2+-2 –> -4