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

if(yes){try to write more code;} else{wikipedia!!;}– Karthik T Jan 31 at 5:59return 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:01int(int)is probably not desired here. You probably wantchar*(int)orString(int)– Jan Dvorak Jan 31 at 6:01