Avoid confusion introduced by relying on operator precedence. This could be confusing:
a = b * c + 1;
Whereas this is clear:
a = (b * c) + 1;