isinf

From cppreference.com
< c‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)(C99)(C99)
Exponential functions
(C99)
(C99)
(C99)
(C99)
Power functions
(C99)
(C99)
Trigonometric and hyperbolic functions
(C99)
(C99)
(C99)
Error and gamma functions
(C99)
(C99)
(C99)
(C99)
Nearest integer floating point operations
(C99)(C99)(C99)
(C99)
(C99)
(C99)(C99)(C99)
Floating point manipulation functions
(C99)(C99)
(C99)
(C99)
Classification
(C99)
(C99)
isinf
(C99)
(C99)
(C99)
(C99)
Macro constants
 
Defined in header <math.h>
#define isinf(arg) /* implementation defined */
(since C99)

Determines if the given floating point number arg is positive or negative infinity. The macro returns an integral value.

Contents

[edit] Parameters

arg - floating point value

[edit] Return value

Nonzero integral value if arg is infinite, 0 otherwise.

[edit] Example

#include <stdio.h>
#include <math.h>
#include <float.h>
 
int main(void)
{
    printf("isinf(NAN)         = %d\n", isinf(NAN));
    printf("isinf(INFINITY)    = %d\n", isinf(INFINITY));
    printf("isinf(0.0)         = %d\n", isinf(0.0));
    printf("isinf(DBL_MIN/2.0) = %d\n", isinf(DBL_MIN/2.0));
    printf("isinf(1.0)         = %d\n", isinf(1.0));
 
    return 0;
}

Possible output:

isinf(NAN)         = 0
isinf(INFINITY)    = 1
isinf(0.0)         = 0
isinf(DBL_MIN/2.0) = 0
isinf(1.0)         = 0

[edit] See also

classifies the given floating-point value
(function)
(C99)
checks if the given number has finite value
(function)
(C99)
checks if the given number is NaN
(function)
(C99)
checks if the given number is normal
(function)
C++ documentation for isinf