C++ Integer to String conversion
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();
}

Come to The Dark Side, We Have Cookies!
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();
}
