Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a homework problem that asks us to write a function in C that will convert from decimal to octal. Here's what I have so far

int oct(int num) {
    if (num < 8) {
        return num;
    }
    else {

    }
}

So yeah I'm pretty stuck, any help is very much appreciated Thanks

share|improve this question
7  
Do you know what octal means? if(yes){try to write more code;} else{wikipedia!!;} – Karthik T Jan 31 at 5:59
So yo tell me how to do it with pen and paper – Deepankar Bajpeyi Jan 31 at 6:00
How about return int; (whether it is decimal or octal, it is stored the same in an int, which is what you are returning.) – lnafziger Jan 31 at 6:01
Hint: a function with the type signature int(int) is probably not desired here. You probably want char*(int) or String(int) – Jan Dvorak Jan 31 at 6:01

closed as too localized by Jan Dvorak, Alexey Frunze, Anders R. Bystrup, Jon Egerton, Jan Gerlinger Jan 31 at 10:30

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

5 Answers

up vote 3 down vote accepted

You can use %o to print a octal number

check this link http://ideone.com/OLXEL7

printf("%o\n", x); 

Hope this helps

share|improve this answer
THANK YOU!!!!!! – Xander Jan 31 at 6:17

Decimal to octal? Super easy, two functions in the stdlib.

void dec2oct(char *dst, const char *src, size_t dstsz)
{
    int n = strtoll(src, NULL, 10); // treat "src" as base-10
    snprintf(dst, dstsz, "%o", n); // and write it to "dst" as base-8
}

Call it like this:

char buf[32];
dec2oct(buf, "133742", sizeof(buf));
share|improve this answer

Since your function has to return an integer, you will have to build up the octal as if it's a decimal number.

Do long division by 8 to work out the digits. There are countless examples on the web for long division in C.

Then for each digit, multiply it by 10 and add to your running count. Then it will be decimal dressed as octal... Or is it the other way around....

share|improve this answer
or, decimal-encoded octal :-) – Jan Dvorak Jan 31 at 6:02
Ahh, that's the one. – paddy Jan 31 at 6:02

Refer the following Program.

I hope this can help.

share|improve this answer
void print_oct(int num)
{
    if (num != 0) {
        print_oct(num / 8);
        printf("%d", num % 8);
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.