Manpage of ECVT
1.12 `ecvt',`ecvtf',`fcvt',`fcvtf'--double or float to string
char *ecvt(double VAL, int CHARS, int *DECPT, int *SGN);
char *ecvtf(float VAL, int CHARS, int *DECPT, int *SGN);
char *fcvt(double VAL, int DECIMALS,
int *DECPT, int *SGN);
char *fcvtf(float VAL, int DECIMALS,
int *DECPT, int *SGN);
(The `stdlib' functions `ecvtbuf' and `fcvtbuf' are reentrant
versions of `ecvt' and `fcvt'.)
The only difference between `ecvt' and `fcvt' is the interpretation
of the second argument (CHARS or DECIMALS). For `ecvt', the second
argument CHARS specifies the total number of characters to write (which
is also the number of significant digits in the formatted string, since
these two functions write only digits). For `fcvt', the second
argument DECIMALS specifies the number of characters to write after the
decimal point; all digits for the integer part of VAL are always
included.
Since `ecvt' and `fcvt' write only digits in the output string, they
record the location of the decimal point in `*DECPT', and the sign of
the number in `*SGN'. After formatting a number, `*DECPT' contains the
number of digits to the left of the decimal point. `*SGN' contains `0'
if the number is positive, and `1' if it is negative.
Supporting OS subroutines required: `close', `fstat', `isatty',
`lseek', `read', `sbrk', `write'.
will give you access to the complete manual.