Some compilers do not support Itoa because it is not standard. The solution
is that
c++11: std::to_ stringsprintf
stdio.hchar *c = new char;
stringstream
sprintf(c,"%d",num);
sstream.hstringstream ss; int x = 1;
ss << x;
string str = ss.str ();