1: /* 2: ** INTEGER OUTPUT CONVERSION 3: ** 4: ** The integer `i' is converted to ascii using itoa and put 5: ** into the static buffer `buf'. The address of `buf' is 6: ** returned. 7: */ 8: 9: char *iocv(i) 10: int i; 11: { 12: static char buf[7]; 13: 14: itoa(i, buf); 15: return (buf); 16: }