<A NAME=PRINT_PRECISION>
<TITLE>PRINT_PRECISION</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>PRINT\_PRECISION</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>declaration</B><P>
<P>
<P>
<P>
<P> <H3>
syntax: </H3>
<em>print_precision</em>(<integer>)
or <em>print_precision</em> <integer>
<P>
<P>
<P>
In
<A HREF=r37_0330.html>rounded</A> mode, numbers are normally printed to the spec
ified
precision. If the user wishes to print such numbers with less precision,
the printing precision can be set by the declaration <em>print_precision</em>.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT>
on rounded;
1/3;
0.333333333333
print_precision 5;
1/3
0.33333
</TT></PRE><P>