C++ Program to Convert Decimal to Hexadecimal

In this article, you will learn and get code on decimal to hexadecimal conversion in C++. The decimal to hexadecimal conversion program in C++ is created here using the following approaches:

But before going through these programs, if you are not aware of some simple steps used for the conversion, then you can refer to Decimal to Hexadecimal to get all the things you need.

Decimal to Hexadecimal in C++

To convert a number from decimal to hexadecimal in C++ programming, you have to ask the user to enter the desired decimal number first. and then convert it into its equivalent hexadecimal value. Finally, print its equivalent hexadecimal value on the output as shown in the program given below.

The question is: write a program in C++ to receive a decimal number and print its equivalent value in hexadecimal.  The answer to this question is given below:

#include<iostream>
using namespace std;
int main()
{
    int decimalNum, rem, i=0;
    char hexaDecimalNum[50];
    cout<<"Enter the Decimal Number: ";
    cin>>decimalNum;
    while(decimalNum!=0)
    {
        rem = decimalNum%16;
        if(rem<10)
            rem = rem+48;
        else
            rem = rem+55;
        hexaDecimalNum[i] = rem;
        i++;
        decimalNum = decimalNum/16;
    }
    cout<<"\nEquivalent Hexadecimal Value: ";
    for(i=i-1; i>=0; i--)
        cout<<hexaDecimalNum[i];
    cout<<endl;
    return 0;
}

This program was built and runs under the Code::Blocks IDE. Here is its sample run:

C++ program convert decimal to hexadecimal

Now enter the input, say 259 (a decimal number), and press the ENTER key to convert and print its equivalent value in hexadecimal as shown in the snapshot given below:

decimal to hexadecimal c++

The following is the output of a dry run of the above program with user input of 259 (a decimal number):

Note: If the value of rem (the remainder) is greater than or equal to 10, then the equivalent hexadecimal alphabet's ASCII value (A-F) gets assigned. That is, A for 10, B for 11, C for 12, and so on.

From 1 to 20, convert decimal to hexadecimal

This program converts all the decimal numbers from 1 to 20 into their equivalent hexadecimal values without asking for user input.

#include<iostream>
using namespace std;
int main()
{
    int decimalNum, rem, i, k;
    char hexaDecimalNum[50];
    cout<<"Decimal Number\tHexadecimal Number\n";
    for(k=1; k<=20; k++)
    {
        decimalNum=k;
        i=0;
        while(decimalNum!=0)
        {
            rem = decimalNum%16;
            if(rem<10)
                rem = rem+48;
            else
                rem = rem+55;
            hexaDecimalNum[i] = rem;
            i++;
            decimalNum = decimalNum/16;
        }
        cout<<k<<"\t\t";
        for(i=i-1; i>=0; i--)
            cout<<hexaDecimalNum[i];
        cout<<endl;
    }
    return 0;
}

Here is its sample output:

decimal to hexaDecimal 1 to 20 c++

Decimal to hexadecimal conversion in C++, using function

Let's create the same-purpose program using the user-defined function DecToHexDec(). This function converts a decimal number to hexadecimal.

#include<iostream>
using namespace std;
int DecToHexDec(int dec, int);
char hexaDecNum[50];
int main()
{
    int decimalNum, i;
    cout<<"Enter the Decimal Number: ";
    cin>>decimalNum;
    i = DecToHexDec(decimalNum, 0);
    cout<<"\nEquivalent Hexadecimal Value: ";
    for(i=i-1; i>=0; i--)
        cout<<hexaDecNum[i];
    cout<<endl;
    return 0;
}
int DecToHexDec(int dec, int i)
{
    int rem;
    while(dec!=0)
    {
        rem = dec%16;
        if(rem<10)
            rem = rem+48;
        else
            rem = rem+55;
        hexaDecNum[i] = rem;
        i++;
        dec = dec/16;
    }
    return i;
}

Here is a sample run with 364 as a decimal number as user input:

decimal to hexadecimal using function c++

The same program in different languages

C++ Quiz


« Previous Program Next Program »


Liked this post? Share it!