0. Bit-Level Operations in C
For Practice Problem 2.13, we take advantage of this property: x ^ y = (x & not(y)) | (not(x) & y)
1. Integer number
1.1 Unsigned Encodings
Figure 2.12 shows the mapping, from bit vectors to ingeters.
UMax = 2^w - 1
1.2 Two’s-Complement Encodings
2. Float number
TBC.
Copyright: all contents are from CS:APP3e.