In embedded systems, numeric values often need to be converted into printable string format (e.g., for UART or display output), but you may not have access to standard C library functions like itoa() or sprintf().
Your task is to:
Read a signed integer
Convert it to its string representation and
Print each character with a space between characters