how to convert integer into string pointer in visual c++?
Use stringstream
#include stringstream ss; ss << i; string s = ss.str();