How to convert an int (integer) to string in C++
To convert an int (integer) to string in c++, we can use the to_string()
method by passing a number as an argument.
Here is an example that converts the integer 25
to a string.
#include <string>
std::string s = std::to_string(25);