#include <string> // important int main() { int number = 1250; std::string numberAsString = std::to_string(number); // result "1250" return 0; }