how to turn int into string c++

include

include

include

int main() { int number = 123; // Replace with your integer std::string strNumber; std::stringstream ss; ss << number; ss >> strNumber;

std::cout << "The converted string is: " << strNumber << std::endl;

return 0;

}