Fix floating point typo

This commit is contained in:
2025-08-29 14:32:04 +01:00
committed by GitHub
parent 904ab06b09
commit 4c4d9759ca

View File

@@ -40,14 +40,14 @@ The binary length of each data type depends on the CPU, OS, and compiler, but in
| `double` | | 64 bits | | `double` | | 64 bits |
| `long double` | | 128 bits | | `long double` | | 128 bits |
| Unsigned Bytes (8 bits) | Maximum Decimal Value | | Unsigned Bytes (8 bits) | Maximum Decimal Value |
| ----------------------- | --------------------------------------------------- | | ----------------------- | --------------------------------------- |
| 1 | 255 | | 1 | 255 |
| 2 | 65.535 | | 2 | 65535 |
| 4 | 4.294.967.295 | | 4 | 4294967295 |
| 8 | 18.446.744.073.709.551.615 | | 8 | 18446744073709551615 |
| 16 | 340.282.366.920.938.463.463.374.607.431.768.211.455 | | 16 | 340282366920938463463374607431768211455 |
| 32 | 1.157 × 10^76 | | 32 | 1.157 × 10^76 |
Examples Examples