Problem 9

Internally, as you know, the number can be represented in binary. Write a program that 'reads' a NUL-terminated character string that represents a decimal number and produces an unsigned binary word representation of the magnitude of that number. For example, if the number is 124, the sequence of characters will be '1','2','4',NUL. ................
................