How to convert octal to decimal in C

1 Answer

0 votes
#include <stdio.h>
#include <math.h>

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;
    }

    printf("%d", decimal);

    return 0;
}




/*
run:

253

*/

 



answered Aug 25, 2021 by avibootz
edited Jul 24, 2022 by avibootz

Related questions

2 answers 164 views
164 views asked Aug 24, 2021 by avibootz
1 answer 156 views
1 answer 189 views
1 answer 132 views
132 views asked Aug 25, 2021 by avibootz
2 answers 213 views
213 views asked Aug 24, 2021 by avibootz
1 answer 147 views
...