14 lines
170 B
C++
14 lines
170 B
C++
|
|
# include <sstream>
|
|
# include <string.h>
|
|
|
|
char* itoa(int n)
|
|
{
|
|
std::stringstream strs;
|
|
char * str;
|
|
|
|
strs << n;
|
|
str = (char*)(strs.str().c_str());
|
|
return (str);
|
|
}
|