diff --git a/content/notes/c-language.md b/content/notes/c-language.md index 0203fd4..f22e9df 100644 --- a/content/notes/c-language.md +++ b/content/notes/c-language.md @@ -40,14 +40,14 @@ The binary length of each data type depends on the CPU, OS, and compiler, but in | `double` | | 64 bits | | `long double` | | 128 bits | -| Unsigned Bytes (8 bits) | Maximum Decimal Value | -| ----------------------- | --------------------------------------------------- | -| 1 | 255 | -| 2 | 65.535 | -| 4 | 4.294.967.295 | -| 8 | 18.446.744.073.709.551.615 | -| 16 | 340.282.366.920.938.463.463.374.607.431.768.211.455 | -| 32 | 1.157 × 10^76 | +| Unsigned Bytes (8 bits) | Maximum Decimal Value | +| ----------------------- | --------------------------------------- | +| 1 | 255 | +| 2 | 65535 | +| 4 | 4294967295 | +| 8 | 18446744073709551615 | +| 16 | 340282366920938463463374607431768211455 | +| 32 | 1.157 × 10^76 | Examples