Skip to content

Commit cab8246

Browse files
committed
Fix Type sizes table attempt 2.
1 parent ee1d604 commit cab8246

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Section06-Variables_and_Constants/readme.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,14 @@ int main () {
6767
- The more bits the more storage required
6868
| Size (in bits) | Representable Values | |
6969
| --- | --- | --- |
70-
| 8 | 256 | 2 <sup> 8 </sup> |
71-
| 16 | 65,536 | 2 <sup> 16 </sup> |
72-
| 32 | 4,294,967,296 | 2 <sup> 32 </sup> |
73-
| 64 | 18,446,744,073,709,551,615 | 2 <sup> 64 </sup> |
70+
<!-- | 8 | 256 | 2 <sup> 8 </sup> | -->
71+
| 8 | 256 | 2^8 |
72+
<!-- | 16 | 65,536 | 2 <sup> 16 </sup> | -->
73+
| 16 | 65,536 | 2^16 |
74+
<!-- | 32 | 4,294,967,296 | 2 <sup> 32 </sup> | -->
75+
| 32 | 4,294,967,296 | 2^32 |
76+
<!-- | 64 | 18,446,744,073,709,551,615 | 2 <sup> 64 </sup> | -->
77+
| 64 | 18,446,744,073,709,551,615 | 2^64 |
7478

7579
## Character Types
7680

0 commit comments

Comments
 (0)