C++ Basic
C++ Interview Programs
- C++ Interview Programs
- C++ Abundant Number
- C++ Amicable Number
- C++ Armstrong Number
- C++ Average of N Numbers
- C++ Automorphic Number
- C++ Biggest of three numbers
- C++ Binary to Decimal
- C++ Common Divisors
- C++ Composite Number
- C++ Condense a Number
- C++ Cube Number
- C++ Decimal to Binary
- C++ Decimal to Octal
- C++ Disarium Number
- C++ Even Number
- C++ Evil Number
- C++ Factorial of a Number
- C++ Fibonacci Series
- C++ GCD
- C++ Happy Number
- C++ Harshad Number
- C++ LCM
- C++ Leap Year
- C++ Magic Number
- C++ Matrix Addition
- C++ Matrix Division
- C++ Matrix Multiplication
- C++ Matrix Subtraction
- C++ Matrix Transpose
- C++ Maximum Value of an Array
- C++ Minimum Value of an Array
- C++ Multiplication Table
- C++ Natural Number
- C++ Number Combination
- C++ Odd Number
- C++ Palindrome Number
- C++ Pascalβs Triangle
- C++ Perfect Number
- C++ Perfect Square
- C++ Power of 2
- C++ Power of 3
- C++ Pronic Number
- C++ Prime Factor
- C++ Prime Number
- C++ Smith Number
- C++ Strong Number
- C++ Sum of Array
- C++ Sum of Digits
- C++ Swap Two Numbers
- C++ Triangular Number
C++ Program to Converter a Decimal to Octal
Photo Credit to CodeToFun
π Introduction
In the world of programming, converting numbers from one base to another is a common task.
Decimal to octal conversion is a fundamental operation where we transform a decimal (base-10) number into its octal (base-8) equivalent.
In this tutorial, we'll explore a C++ program that performs this conversion efficiently.
π Example
Let's delve into the C++ code that performs the decimal to octal conversion.
#include <iostream>
// Function to convert decimal to octal
void decimalToOctal(int decimalNumber) {
int octalNumber[100], i = 0;
// Convert decimal to octal
while (decimalNumber != 0) {
octalNumber[i] = decimalNumber % 8;
decimalNumber = decimalNumber / 8;
++i;
}
// Display the octal number in reverse order
std::cout << "Octal equivalent: ";
for (int j = i - 1; j >= 0; --j) {
std::cout << octalNumber[j];
}
std::cout << std::endl;
}
// Driver program
int main() {
// Replace this value with your desired decimal number
int decimalNumber = 57;
// Call the function to convert decimal to octal
decimalToOctal(decimalNumber);
return 0;
}
π» Testing the Program
To test the program with different decimal numbers, replace the value of decimalNumber in the main function.
Octal equivalent: 71
Compile and run the program to see the octal equivalent.
π§ How the Program Works
- The program defines a function decimalToOctal that takes a decimal number as input and converts it to octal.
- Inside the function, it uses a while loop to repeatedly divide the decimal number by 8 and store the remainders in an array.
- The function then displays the octal equivalent by printing the elements of the array in reverse order.
π§ Understanding the Concept of Decimal to Octal
Decimal and octal are different number systems. Decimal uses base-10 (0 to 9), while octal uses base-8 (0 to 7). The process of converting a decimal number to octal involves dividing the decimal number by 8 repeatedly and noting the remainders in reverse order.
For example, let's convert the decimal number 57 to octal:
57 Γ· 8 = 7 remainder 1 7 Γ· 8 = 0 remainder 7
So, the octal equivalent is 71.
π’ Enhancements to the Program
Consider exploring enhancements to the program, such as handling negative decimal numbers, input validation, or optimizing the conversion process.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (C++ Program to Converter a Decimal to Octal), please comment here. I will help you immediately.