itoa(3C)
NAME
itoa − convert integer to ASCII
SYNOPSIS
char ∗itoa (n, b, nptr)
int n;
int b;
char ∗nptr;
DESCRIPTION
This function converts an integer n to an ASCII string pointed to by nptr. The converted value is represented in the base b, a number from 2-16, inclusive.
SEE ALSO
atof(3C), strtod(3C), strtol(3C), scanf(3S).
CX/UX Programmer’s Reference Manual