Arturito.net

arturito

  • 07:32:20 pm on February 24, 2009 | # | 0

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

    #include <sstream>

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

    box_logo

     

Leave a Comment