- or download this
printf("%.16e", sqrt(2.0));
- or download this
printf(MY_FORMAT, sqrt(2.0));
- or download this
WRITEMAKEFILE(
....
DEFINE => '-DMY_FORMAT="%.16e"',
....
);
- or download this
use strict;
use warnings;
...
EOC
foo();
- or download this
C:\_32\C>type try.c
#include <stdio.h>
...
C:\_32\C>try
1.4142135623730951e+000
C:\_32\C>