07/08/2010, 08:16
|
| | Fecha de Ingreso: abril-2010 Ubicación: Rosario
Mensajes: 1.850
Antigüedad: 14 años, 7 meses Puntos: 228 | |
Respuesta: Convertir int en char (en c) sin usar ITOA Podiras crear tu propia funcion ITOA.
char numero[12];
int num,i=0;
while (num !=0)
{
numero[i++] = num %10;
num /= 10;
}
Esto te devuelve el numero invertido, deberias revertirlo y agregarle el \0 al final. |