I was wondering if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I try to build my program under Linux, I get a compilation error.
I was wondering if there was an alternative to itoa() for converting an integer
Share
In C++11 you can use
std::to_string:If you’re working with prior to C++11, you could use C++ streams:
Taken from http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/