Complex Assignment (CA)

Description:

This rule checks for the occurrence of multiple assignments and assignments to variables within the same expression. You should avoid using assignments that are too complex, since they decrease program readability. If the Strict option is unchecked, assignments of equal value to several variables in one operation are permitted.

Example:

     i = j = k = 0;