Skip to content

Commit 012e03f

Browse files
committed
Fix Type sizes table attempt 6.
1 parent b8f6d3d commit 012e03f

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

Section06-Variables_and_Constants/readme.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,10 @@ int main () {
6868

6969
| Size (in bits) | Representable Values | 2 to the power of |
7070
| --- | --- | --- |
71-
<!-- | 8 | 256 | 2 <sup> 8 </sup> | -->
72-
| 8 | 256 | 2^8 |
73-
<!-- | 16 | 65,536 | 2 <sup> 16 </sup> | -->
74-
| 16 | 65,536 | 2^16 |
75-
<!-- | 32 | 4,294,967,296 | 2 <sup> 32 </sup> | -->
76-
| 32 | 4,294,967,296 | 2^32 |
77-
<!-- | 64 | 18,446,744,073,709,551,615 | 2 <sup> 64 </sup> | -->
78-
| 64 | 18,446,744,073,709,551,615 | 2^64 |
71+
| 8 | 256 | 2 <sup> 8 </sup> |
72+
| 16 | 65,536 | 2 <sup> 16 </sup> |
73+
| 32 | 4,294,967,296 | 2 <sup> 32 </sup> |
74+
| 64 | 18,446,744,073,709,551,615 | 2 <sup> 64 </sup> |
7975

8076
## Character Types
8177

0 commit comments

Comments
 (0)