What is the way to convert this int to a std::string. I have searched MSDN and found that itoa could be used (vs atoi for string to int as I know how it is done).
Though I cant find any good example that shows how itoa is used or if any other approach is possible.
int i = 5;