expand icon
book ADTs, Data Structures, and Problem Solving with C++ 2nd Edition by Larry Nyhoff cover

ADTs, Data Structures, and Problem Solving with C++ 2nd Edition by Larry Nyhoff

Edition 2ISBN: 978-0131409095
book ADTs, Data Structures, and Problem Solving with C++ 2nd Edition by Larry Nyhoff cover

ADTs, Data Structures, and Problem Solving with C++ 2nd Edition by Larry Nyhoff

Edition 2ISBN: 978-0131409095
Exercise 30
To convert a binary numeral to octal, group the digits in groups of three, starting from the binary point (or from the right end if there is none), and replace each group with the corresponding octal digit. For example,
To convert a binary numeral to octal, group the digits in groups of three, starting from the binary point (or from the right end if there is none), and replace each group with the corresponding octal digit. For example,     Convert the binary numerals in Exercises 25-30 to octal numerals. 10101.10101
Convert the binary numerals in Exercises 25-30 to octal numerals.
10101.10101
Explanation
Verified
like image
like image

Converting binary to octal equivalent:
...

close menu
ADTs, Data Structures, and Problem Solving with C++ 2nd Edition by Larry Nyhoff
cross icon