previous
|
start
|
next
Assignment, Increment, and Decrement
Assignment is not the same as mathematical equality:
items = items + 1;
items++
is the same as
items = items + 1
items--
subtracts 1 from
items
previous
|
start
|
next