how to convert integer into string pointer in visual c++?
If you want a textual representation of the pointer address use sprintf. If you want to treat the numeric value as a pointer to a string use casting like so:
int intValue = ...; char * charPtr = (char*)intValue;