campo-sirio/gfm/demo10.c

11 lines
187 B
C
Raw Normal View History

#include <stdio.h>
#include "gm.h"
void main(void);
void main()
{
DECP x;
double f=98.76;
ConvDoubleToDecimalRound(x, f, 2);
dprintf("The double %7.2lf equals the DEC %t\n", f, x);
}