Arturito.net

Come to The Dark Side, We Have Cookies!

C++ Integer to String conversion

without comments

I wrote this little function which converts integer type variable to string. Always very handy!


#include

string toString(int n)
{
string str;
stringstream out;
out<
return str = out.str();
}

box_logo

Written by guru

February 24th, 2009 at 7:32 pm

Posted in C++