Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Name | ++ (increment) |
||
---|---|---|---|
Examples | int a = 0; // Sets "a" to 0 a++; int b = a; // Sets "b" to 1 |
||
Description | Increases the value of an integer variable by 1. Equivalent to the operation i = i + 1. If the value of the variable i is five, then the expression i++ increases the value of i to 6. | ||
Syntax | value++ |
||
Parameters |
|
||
Usage | Application | ||
Related | + (add) += (add assign) -- (decrement) |