Table of Contents Previous topic Next topic
COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->_ecvt() _ecvtl
Summary
#include <stdlib.h>
char *_ecvt(double value, int count, int* dec, int* sign); | Convert floating point value to a string |
char *_ecvtl(long double value, int count, int* dec, int* sign); | Convert floating point value to a string |
value | The number to be converted |
count | Number of digits after the decimal point |
dec | Pointer to integer for storage of decimal point position |
sign | Pointer to integer for storage of sign indicator |