◄Summary► ◄Example► ◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── The integer-to-ASCII conversion functions convert the digits of the given value to a null-terminated character string and store the result in <string>. The itoa <string> result may be up to 17 bytes. The ltoa and ultoa functions may store up to 33 bytes in <string>. The <radix> argument specifies the base of <value> and must be in the range 2-36. If <radix> equals 10 and <value> is negative, the first character of the stored string is the minus sign (-). Return Value These functions return a pointer to <string>. There is no error return. -♦-