#include <stdlib.h>
#include <stdio.h>
int
main(
void
)
{
number = 12345;
char
string[25];
itoa(number, string, 10);
printf
(
"integer = %d string = %s\n"
, number, string);
return
0;
}