Easiest way to convert int to string in C++ - Stack Overflow
What is the easiest way to convert from int to equivalent string in C++. I am aware of two methods. Is there any easier way? 1. int a = 10; char *intStr = itoa(a); string str = string ......