0-26
Computer Programming with C
Combining the 3-bit binary blocks, we have 010011010111. Separating the group of binary numbers
(from the le side) into the 4-bit binary number and by converting these blocks into their respective
hexadecimal symbols, we have:
0100 1101 0111
4 D 7
Thus, the hexadecimal equivalent of (2327)
8
is (4D7)
16
.
The method used for the conversion of a hexadecimal number to an octal number is the same as the
octal to hexadecimal conversion except that each hexadecimal digit is converted into the 4-bit binary
form and then after grouping of all the 4-bit binary blocks, it is converted into the 3-bit binary form.
Finally, these 3-bit binary forms are converted into octal symbols.
Example 2:
Determine the octal equivalent ...