'int to string'에 해당되는 글 1건

  1. 2013.02.13 convert int to string in c++

convert int to string in c++

ITWeb/개발일반 2013. 2. 13. 13:49

Reference URL : http://www.cplusplus.com/articles/D9j2Nwbp/


[Convert int to string]

int convInt;

stringstream convStr;

string str;


convInt = 1024;

convStr << convInt;


str = convStr.str();


: