In C++11 you can use std::to_string:
std::to_string
#include <string> std::string s = std::to_string(5);
If you're working with prior to C++11, you could use C++ streams:
#include <sstream> int i = 5; std::string s; std::stringstream out; out << i; s = out.str();
Taken from http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/
2.1m questions
2.1m answers
60 comments
57.0k users