1// ----------------------------------- C++ 11 and onwards
2// EXAMPLE
3#include <string>
4int iIntAsInt = 658;
5std::string sIntAsString = to_string(iIntAsInt);
6
7/* SYNTAX
8to_string(<your-integer>)
9*/
10
11// ----------------------------------- BEFORE C++ 11
12// EXAMPLE
13#include <sstream>
14#include <string>
15int iYourInt = 5;
16std::stringstream ssYourInt_AsStream << iYourInt;
17std::string sYourInt_AsString = ssYourInt_AsStream.str();