- **Arithmetic Operators**: `+`, `-`, `*`, `/`, `%`
- Example: `int sum = a + b;`
- Precedence: `*`, `/`, `%` > `+`, `-`
- Associativity: Left to Right
- **Relational Operators**: `==`, `!=`, `>`, `<`, `>=`, `<=`
- Example: `if (a > b)`
- Precedence:
Show more…