convert int to string in c++
ITWeb/개발일반 2013. 2. 13. 13:49Reference URL : http://www.cplusplus.com/articles/D9j2Nwbp/
[Convert int to string]
int convInt;
stringstream convStr;
string str;
convInt = 1024;
convStr << convInt;
str = convStr.str();
'int to string'에 해당되는 글 1건convert int to string in c++ITWeb/개발일반 2013. 2. 13. 13:49Reference URL : http://www.cplusplus.com/articles/D9j2Nwbp/ [Convert int to string] int convInt; stringstream convStr; string str; convInt = 1024; convStr << convInt; str = convStr.str(); |