#include /* this `type less' definition of max is doubtless dangerous, but it *seems* to work */ extern void *malloc(); max(a, b) { if (a > b) return(a); else return(b); } void reverse(s) char s[]; { int c, i, j; for (i=0, j = strlen(s)-1; i 0); /* delete it */ if (sign < 0) s[i++] = '-'; s[i] = '\0'; reverse(s); } /* #include main() { char s[5]; strcpy(s,"dog"); printf("%s\n",s); reverse(s); itoa(4,s); printf("%s\n",s); } */