/* ========================================================================== */ /* */ /* itoa.c */ /* (c) 2006 Priyadarsan */ /* */ /* example usage of itoa( convert integer to string ) */ /* (Original Code: http://www.freebookzone.com/others/itoa.c) */ /* */ /* ========================================================================== */ #include "itoa.h" //http://www.freebookzone.com/others/itoa.h int main() { int i; printf("Enter a number:"); scanf("%d",&i); printf("You have entered %d (%s)",i,itoa(i)); return 0; }