qc.hlp (Table of Contents; Topic list)
Integer-to-ASCII Conversion Functions
 Description Example                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Include:  <stdlib.h>
 
  Syntax:   char *itoa( int value, char *string, int radix );
            char *ltoa( long value, char *string, int radix );
            char *ultoa( unsigned long value, char *string, int radix );
 
  Returns:  a pointer to <string>.
                                    -♦-