C - Operators Precedence
Operators Precedence in C
Operator precedence determines the order in which operators are evaluated. Use parentheses to make intent explicit.
Prerequisites
Examples
int r = 2 + 3 * 4; // 14
int r2 = (2 + 3) * 4; // 20