C examples for math.h:double_t
type
<cmath> <ctgmath> <math.h>
Alias of floating-point types at least as wide as double.
#include <stdio.h> #include <math.h> int main()//from w ww . j a v a 2s. c om { double_t d = 123.123; printf("%f",d); return 0; }