# include # include char* itoa(int n) { std::stringstream strs; char * str; strs << n; str = (char*)(strs.str().c_str()); return (str); }