Mar 11, 2011 | 2 comments Convertion the integer to string in C!! It has really basic way to do. Here is the code!int main{ int i = 232324; char numChar[10]; sprintf(numChar, "%d", i); return 0;} No related posts. CC programmingInt to String