double_t - C math.h

C examples for math.h:double_t

Type

type

From

<cmath>
<ctgmath>
<math.h>

Description

Alias of floating-point types at least as wide as double.

Demo Code


#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;
}

Related Tutorials