...
Division is between two operands of arithmetic type. Overflow can occur during twostwo's-complement signed integer division when the dividend is equal to the minimum (negative) value for the signed integer type and the divisor is equal to -1. Division operations are also susceptible to divide-by-zero errors (see INT33-C. Ensure that division and modulo operations do not result in divide-by-zero errors).
...
The unary negation operator takes an operand of arithmetic type. Overflow can occur during twostwo's-complement unary negation when the operand is equal to the minimum (negative) value for the signed integer type.
...