I need a way to Convert an Int to a Char array.
Srry, you must have read my question wrong :P.
Unions are completely unrelated to my question.
I need a function that can take all the digits from an integer and plug them into an array of characters.
Example:
The 2 in
int Number = 246
would be plugged into address 0 of the char* array.
The 4 would be placed into address 1 and so on.