Skip to content

Commit

Permalink
fixed an example regarding order of operations
Browse files Browse the repository at this point in the history
  • Loading branch information
corbar committed Oct 4, 2023
1 parent 69c4e21 commit 25f858e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/D-Processing/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ x = x + x; // increment first = 8
int x = 3, y;
y = x;
++x;
x = y + x; // add first = 7
x = y + x; // add using the old value of x = 7
```

## Ternary Expression
Expand Down

0 comments on commit 25f858e

Please sign in to comment.