You can easily identify the digits in reverse order -- for a positive integer, number % 10 is the least significant digit (as a number, 0 to 9 included), then you can do number /= 10; to prepare for the next leg of the loop (that will get the next-least-significant digit); once the number is 0 you're done (but you must loop at least once, so consider a do/while). You can just emit each digit followed by a newline.
Do you need to deal with negative integers? Floating point numbers? Complex number? "A number" is a very ambiguous term, I'm sure your homework assignment is more specific.
What primitives are you allowed to use, e.g., once you have a digit, can you just printf it or do you have to translate it manually into ascii for example?
Is there a constraint in your homework assignment about the order in which the digits must be emitted? If least-significant first, the problem's much easier of course. If the most significant digits must come first, you can reverse the order (since inevitably you'll discover them least-first) either with an explicit stack, or with recursion (which boils down to using an implicit stack). Again, what primitives are you allowed to employ...?