It is possible to convert integer to string in C without sprintf?
sprintf
int i = 24344; /*integer*/ char *str = itoa(i); /*allocates required memory and then converts integer to string and the address of first byte of memory is returned to str pointer.*/