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 233 views
233 views asked Aug 24, 2021 by avibootz
1 answer 158 views
1 answer 143 views
143 views asked Aug 25, 2021 by avibootz
2 answers 172 views
172 views asked Aug 24, 2021 by avibootz
1 answer 171 views
1 answer 133 views
133 views asked Jul 23, 2022 by avibootz
...