Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
b3940763c0b8b934b9d16ab38f47a3749e3e078f
/
.
/
useful
/
gradual_underflow.c
blob: 53886d8afd18e4721771f8c994497c56192f83cd [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
main
(
void
)
{
double
d
=
7.25063790881233303e-303
;
int
i
;
for
(
i
=
0
;
i
<
26
;
i
++)
{
printf
(
"%.16e\n"
,
d
);
d
*=
0.1012198489248992489422
;
}
return
0
;
}