The __ltoa function returns the pointer to the converted string (i.e., it
returns the argument string).
The __ultoa function converts the unsigned long argument value into a
null-terminated character string using the argument radix as the base of the
number system. A long integer has 32 bits when expressed in radix 2, so
the string can occupy a maximum of 33 bytes with the terminating null
character. The resulting string is returned by __ultoa in the buffer whose
address is given in the argument string. The argument radix specifies the
base (between 2 and 36) of the number system in which the string
representation of value is expressed. For example, using either 2, 8, 10, or
16 as radix, you can convert value into its binary, octal, decimal, or
hexadecimal representation, respectively.
The __ultoa function returns the pointer to the converted string (i.e., it
returns the argument string).
Commentaires sur ces manuels