previous
|
start
|
next
Assignment (Increment and Decrement)
Assignments like
month = month + 1;
are very common in programming.
This assignment
increments
the variable month.
C++ uses a special shorthand for increment:
month++; // add 1 to month
C++ also supports
decrement
:
month--; // subtract 1 from month
previous
|
start
|
next