con itoa() :
codice:
   int intero = 1234;
   int base = 10;
   char str[8];

itoa(intero, str, base);