j'arrive pas à comprendre!
quand je mets :
///////////////////////////////////////
std::ostringstream oss;
oss << mon_int;
mon_string = oss.str();
/////////////////////////////////////////
il m'indique l'erreur suivante:
aggregate 'std::ostringstream oss' has incomplete type and cannot be defined
et quand je met:
////////////////////////////////////////////
sprintf(mon_string,"%d",mon_int);
//////////////////////////////////////////
il m'indique l'erreur suivante:
no matching function fo call to 'sprintf(std::string&,const char[3],int&)'