Concacténer un string et un entier en c++

Fermé
sky123 Messages postés 42 Date d'inscription lundi 18 août 2008 Statut Membre Dernière intervention 23 novembre 2008 - 25 oct. 2008 à 16:09
 be__good - 25 oct. 2008 à 16:14
Bonjour,
j'aimerais savoir comment concacténer un string et un int en c++.
merci

1 réponse

#include <sstream>

ostringstream nom;
nom << string << int;

Pour obtenir un string : nom.str()
0