C Functions
_CP_rs_
.md_CP_rs converts a double floating point number into a CPSTR. The precision of this function can be changed using the _CP_precision function.
Syntax
CPSTR * _CP_rs_(double number)
Example(s)
/* Displays 1.123. */ CPSTR * s = _CP_rs_(1.123); _CP_print(s);