
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
C++ Program to convert Decimal Numbers to Octal
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 |
---|---|
8 | 10 |
70 | 106 |
25 | 31 |
7 | 7 |
A program that converts the decimal numbers into octal is as follows.
Example
#include <iostream> 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; } int main() { DecimalToOctal(70); return 0; }
Output
Octal form of decimal number 70 is 106
In the above program, the function DecimalToOctal convert the decimal numbers into octal.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;
The main() function only contains the function call to DecimalToOctal() with the required values. This is demonstrated by the following code snippet.
DecimalToOctal(70);
- Related Articles
- C# program to convert decimal to Octal number
- Java Program to convert Decimal to Octal
- Swift Program to convert Decimal to Octal
- Golang Program to convert Decimal to Octal
- Haskell Program to convert Decimal to Octal
- C++ Program to convert Octal Number to Decimal and vice-versa
- Java program to convert decimal number to octal value
- Java program to convert float decimal to Octal number
- Java Program to convert decimal integer to octal number
- Java Program to convert octal number to decimal number
- Python program to convert float decimal to octal number
- C program to convert roman numbers to decimal numbers
- How to Convert Decimal to Octal?
- How to convert a Decimal to Octal using C#?
- Convert decimal integer to octal in Java
