How to convert octal to hexadecimal in C++

1 Answer

0 votes
#include <iostream> 
#include <cmath>

int main()
{
    int octal = 375, reminder, i = 0, decimal = 0, pos = 0;
    char hex[32];

    // Octal to decimal
    while(octal!=0) {
        decimal = decimal + (octal % 10) * pow(8, pos);
        pos++;
        octal = octal / 10;
    }
    // Decimal to hexadecimal
    while(decimal!=0) {
        reminder = decimal % 16;
        if(reminder<10)
            hex[i++] = reminder + 48; // 48 = Ascii -> 0
        else
            hex[i++] = reminder + 55; //55 = Ascii -> 7
        decimal /= 16;
    }
    for (int j = i - 1; j >= 0; j--)
        std::cout << hex[j];

    return 0;
}




/*
run:

FD

*/

 



answered Aug 25, 2021 by avibootz
edited Aug 25, 2021 by avibootz

Related questions

2 answers 196 views
196 views asked Aug 25, 2021 by avibootz
1 answer 166 views
1 answer 123 views
123 views asked Jul 24, 2022 by avibootz
1 answer 184 views
...