++
Description
Increments the value of a variable by 1.
Syntax
x++; // increment x by one and returns the old value of x
++x; // increment x by one and returns the new value of x
Parameter Values
- x: variable. Allowed data types: int, long (possibly unsigned).
Return Values
- The original or newly incremented value of the variable.
Example Code
Example 1
void setup() {
Serial.begin(9600);
int x = 2;
int y = ++x; // x contains 3, y contains 3
Serial.print("x = ");
Serial.println(x);
Serial.print("y = ");
Serial.println(y);
}
void loop() {
}
The result on Serial Monitor:
COM6
x = 3
y = 3
Autoscroll
Clear output
9600 baud
Newline
Example 2
void setup() {
Serial.begin(9600);
int x = 2;
int y = x++; // x contains 3, but y still contains 2
Serial.print("x = ");
Serial.println(x);
Serial.print("y = ");
Serial.println(y);
}
void loop() {
}
The result on Serial Monitor:
COM6
x = 3
y = 2
Autoscroll
Clear output
9600 baud
Newline
See Also
- Language : += (compound addition)
- Language : &= (compound bitwise and)
- Language : |= (compound bitwise or)
- Language : ^= (compound bitwise xor)
- Language : /= (compound division)
- Language : *= (compound multiplication)
- Language : %= (compound remainder)
- Language : -= (compound subtraction)
- Language : -- (decrement)
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.