HUGE_VALF - C math.h

C examples for math.h:HUGE_VALF

Type

Macro

Description

Huge float value

Macro constant that expands to a positive expression of type float.

A function returns this value when the result too large in magnitude to be representable with its return type.

Demo Code


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

int main()//from  w w  w.j a v  a  2 s.  c om
{
    printf("%f",HUGE_VALF);
    return 0;
}

Related Tutorials