Signed Integers
A signed integer is any integer with a signed positive or negative bit. This limitation allows them to store negative and positive values, at the cost of maximum value
Information
- Max Length: Dependant
- Encoding: Binary
- Category: Integer
Size Breakdown
Bits | Min Value | Max Value |
---|---|---|
8 | -128 | 127 |
16 | -32 768 | 32 767 |
32 | -2 147 483 648 | 2 147 483 647 |
64 | -9 223 372 036 854 775 808 | 9 223 372 036 854 775 807 |
Errors
N/A