Font-size: A A A
The ++ is the arithmetic pre-or-post increment operator. This operator is used to pre- or post-increment (increase) the value of an integer by 1.
count = count++; count = ++count;