_CP_precision

_CP_precision


_CP_pick_env Index Level _CP_print
Syntax void _CP_precision(int number)
Category C Interface
Type C Function
Description equivalent to the FlashBASIC statement: precision number.

This function affects the precision of the _CP_rs_ and the _CP_sr_ functions.
Options
See Also C Functions introduction _CP_rs_ _CP_sr_
Example CPSTR * s = _CP_mkstr("1.12345");
double r;

_CP_precision(2);
r = _CP_sr_(s);
_CP_unix_env();
printf("%g\n", r);
_CP_str_free(s);

This example displays "1.12" since the conversion is truncated to the precision of 2.
Warnings
Compatibility AP 6.1
_CP_pick_env Index Level _CP_print