how to convert integer into string pointer in visual c++?
Take any C and C++ textbook. This simple C code should work in Visual C++ and others C++ compilels and convert 489 into "489":
char result[100]; int num = 489; sprintf(result, "%d", num);