/* ========================================================================== */ /* */ /* itoa.h */ /* (c) 2006 Priyadarsan */ /* */ /* a program to convert integer to string */ /* (Original Code: http://www.freebookzone.com/others/itoa.h) */ /* Ex. usage file available at http://www.freebookzone.com/others/itoa.c */ /* */ /* ========================================================================== */ char* itoa (int n){ int i=0,j; char s[17]; char u[17]; do{ s[i++]=(char)( n%10 + 48 ); n-=n%10; } while((n/=10)>0); for (j=0;j