Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,951 questions

51,893 answers

573 users

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 160 views
160 views asked Aug 25, 2021 by avibootz
1 answer 139 views
1 answer 110 views
110 views asked Jul 24, 2022 by avibootz
1 answer 158 views
...