C++ Exercises: Convert a hexadecimal number to octal number
C++ For Loop: Exercise-81 with Solution
Write a C++ program to convert a hexadecimal number to an octal number.
Pictorial Presentation:

Sample Solution:-
C++ Code :
#include<iostream>
#include<stdlib.h>
#include<math.h>
using namespace std;
unsigned long Hex_To_Dec(char hex[])
{
char *hexstring;
int length = 0;
const int hexbase = 16;
unsigned long dnum = 0;
int i;
for (hexstring = hex; *hexstring != '\0'; hexstring++)
{
length++;
}
hexstring = hex;
for (i = 0; *hexstring != '\0' && i < length; i++, hexstring++)
{
if (*hexstring >= 48 && *hexstring <= 57)
{
dnum += (((int)(*hexstring)) - 48) * pow(hexbase, length - i - 1);
}
else if ((*hexstring >= 65 && *hexstring <= 70))
{
dnum += (((int)(*hexstring)) - 55) * pow(hexbase, length - i - 1);
}
else if (*hexstring >= 97 && *hexstring <= 102)
{
dnum += (((int)(*hexstring)) - 87) * pow(hexbase, length - i - 1);
}
else {
cout<<" The given hexadecimal number is invalid. \n";
}
}
return dnum;
}
int main()
{
unsigned long dnum;
char hex[9];
int dec_num, rem=1, m, n;
int oct_num[100],quot;
dec_num=0;
cout << "\n\n Convert any hexadecimal number to octal number:\n";
cout << "----------------------------------------------------\n";
cout << " Input any 32-bit Hexadecimal Number: ";
cin>>hex;
dnum = Hex_To_Dec(hex);
quot = dnum;
cout<<" The equivalent octal number is: ";
quot = dnum;
while(quot != 0)
{
oct_num[m++] = quot % 8;
quot = quot/8;
}
for(n=m-1; n>=0; n--)
{
cout<<oct_num[n];
}
cout<<"\n";
}
Sample Output:
Convert any hexadecimal number to octal number: ---------------------------------------------------- Input any 32-bit Hexadecimal Number: 5f The equivalant octal number is: 137
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C++ to convert hexadecimal number to binary number.
Next: Write a program in C++ to compare two numbers.
What is the difficulty level of this exercise?
C++ Programming: Tips of the Day
What is the "-->" operator in C/C++?
--> is not an operator. It is in fact two separate operators, -- and >.
The conditional's code decrements x, while returning x's original (not decremented) value, and then compares the original value with 0 using the > operator.
To better understand, the statement could be written as follows:
while( (x--) > 0 )
Ref : https://bit.ly/3kOTBby
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook