How to convert octal to decimal in C++

1 Answer

0 votes
#include <iostream> 
#include <cmath>
 
int main()
{
    int octal = 375, reminder, i = 0, decimal = 0, pos = 0;

    while(octal!=0) {
        decimal = decimal + (octal % 10) * pow(8, pos);
        pos++;
        octal = octal / 10;
    }
   
    std::cout << decimal;
 
    return 0;
}
 
 
 
 
/*
run:
 
253
 
*/

 



answered Aug 25, 2021 by avibootz

Related questions

2 answers 212 views
212 views asked Aug 24, 2021 by avibootz
1 answer 147 views
1 answer 132 views
132 views asked Aug 25, 2021 by avibootz
2 answers 163 views
163 views asked Aug 24, 2021 by avibootz
1 answer 155 views
1 answer 130 views
130 views asked Jul 23, 2022 by avibootz
...