Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/09/2009, 18:58
Avatar de CrazyJugglerDrummer
CrazyJugglerDrummer
 
Fecha de Ingreso: agosto-2009
Mensajes: 13
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: Convertir int en string

para convertir int o otro typo numerico, usa stringstream

Código:
#include <sstream>

int i = 5;
std::string s;
std::stringstream out;
out << i;
s = out.str();