
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Octal Number to Decimal and Vice Versa in C++
In a computer system, the octal number is expressed in the octal numeral system while the decimal number is in the decimal numeral system. The octal number is in base 8 while the decimal number is in base 10.
Examples of decimal numbers and their corresponding octal numbers are as follows.
Decimal Number | Octal Number |
---|---|
10 | 12 |
70 | 106 |
25 | 31 |
16 | 20 |
A program that converts the octal numbers into decimal and the decimal numbers into octal is as follows −
Example
#include <iostream> #include <cmath> using namespace std; void DecimalToOctal(int decimalNum) { int octalNum = 0, placeValue = 1; int dNo = decimalNum; while (decimalNum != 0) { octalNum += (decimalNum % 8) * placeValue; decimalNum /= 8; placeValue *= 10; } cout<<"Octal form of decimal number "<<dNo<<" is "<<octalNum<<endl; } void OctalToDecimal(int octalNum) { int decimalNum = 0, power = 0; int oNo = octalNum; while(octalNum != 0) { decimalNum += (octalNum%10) * pow(8,power); ++power; octalNum/=10; } cout<<"Decimal form of octal number "<<oNo<<" is "<<decimalNum<<endl; } int main() { DecimalToOctal(20); OctalToDecimal(32); return 0; }
Output
Octal form of decimal number 20 is 24 Decimal form of octal number 32 is 26
In the above program, the function DecimalToOctal convert the decimal numbers into octal and the function OctalToDecimal converts octal numbers into decimal.
In the function DecimalToOctal, initially the variable octalNum is initialized to zero. The variable placeValue denotes the location of the digit in the number. The value of octalNum is found using a while loop.
For each iteration of the while loop, the decimalNum is divided by 8 and the remainder is multiplied by placeValue. This is added to the previous value of octalNum. Also decimalNum is divided by 8 and the quotient is stored back. placeValue is multiplied by 10.
A code snippet that demonstrates this is as follows.
while (decimalNum != 0) { octalNum += (decimalNum % 8) * placeValue; decimalNum /= 8; placeValue *= 10; }
After the Octal value i.e octalNum is ovbtained, it is displayed. This is given below −
cout<<"Octal form of decimal number "<<dNo<<" is "<<octalNum<<endl;
In the function OctalToDecimal, in each iteration of the while loop octalNum is divided by 8 and the remainder is multiplied by 8 raised to power. This is added to the previous value of decimalNum. Power is incremented by 1 and octalNum is divided by 10. This is demonstrated as follows.
while(octalNum != 0) { decimalNum += (octalNum%10) * pow(8,power); ++power; octalNum/=10; }
After the value of decimalNum is found, it is displayed. This is seen as follows.
cout<<"Decimal form of octal number "<<oNo<<" is "<<decimalNum<<endl;
The main() function only contains the function calls to DecimalToOctal() and OctalToDecimal() with the required values. This is demonstrated by the following code snippet.
DecimalToOctal(20); OctalToDecimal(32);