PURPOSE
: Convert positive integer base 10 number to binary number system equivalent
array.
SYNTAX
: value:Integer
call fDecToBinaryA
RETURNS
: CharArray
Equivalent binary representation of the decimal number as array
of characters.
Empty array on error.
EXAMPLES
:
176 to Binary
176 call fDecToBinaryA -> ["1","0","1","1","0","0","0","0"];
2331458 to Binary
2331458 call fDecToBinaryA -> ["1","0","0","0","1","1","1","0","0","1","0","0","1","1","0","1","0","0","0","0","1","0"]
HISTORY
: CoC bn880 06/03/2003
DEPENDENCIES: CoC_LIBNUMSYS