float_t - C math.h

C examples for math.h:float_t

type

type

From

<cmath>
<ctgmath>
<math.h>

Description

Alias of one of the fundamental floating-point types at least as wide as float.

Demo Code


#include <stdio.h>
#include <math.h>

int main()/*from  w w  w  .  j a v a2s  .c  om*/
{
    float_t d = 123.123;
    printf("%f",d);
    return 0;
}

Related Tutorials