I\'m working on Eclipse inside Ubuntu environment on my C++ project.
I use the itoa function (which works perfectly on Visual Studio) and the compiler c
itoa
Boost way:
string str = boost::lexical_cast(n);