Converting an int to std::string October 20, 2022 by Tarik You can use std::to_string in C++11 int i = 3; std::string str = std::to_string(i);