| TYPE | SIZE | MINIMUM | MAXIMUM |
| char | 1 byte = 8 bits | -128 | 127 |
| unsigned char | 1 byte = 8 bits | 0 | 255 |
| short | 2 bytes = 16 bits | -32768 | 32767 |
| unsigned short | 2 bytes = 16 bits | 0 | 65535 |
| int | 4 bytes = 32 bits | -2147483648 | 2147483647 |
| long | 4 bytes = 32 bits | -2147483648 | 2147483647 |
| unsigned int | 4 bytes = 32 bits | 0 | 4294967295 |
| unsigned long | 4 bytes = 32 bits | 0 | 4294967295 |
| float | 4 bytes = 32 bits | 1.17549435e-38f | 3.40282347e+38f |
| double | 8 bytes = 64 bits | 2.225073858507201e-308 | 1.797693134862316e+308 |