Synopsis: | The increment and decrement operators should not be mixed with prefix forms in the same expression. |
Language: | C |
Severity Level: | 4 |
Category: | EXPRESSIONS |
Description: |
Expressions are particularly confusing to read when both postfix and prefix forms
are used simultaneously, as for example in expressions like:
Example: x++ + --j; /* POOR Practice */ |