Synopsis: | The comma operator shall not be used. |
Language: | C |
Severity Level: | 6 |
Category: | Expressions |
Description: |
Justification Using the comma operator is confusing and is always avoidable without any loss of readability, program size or program performance. Example a = (b++, c++); /* WRONG */ |