Round a floating-point number to the nearest integer value, using the current rounding direction
#include <math.h> long long int llrint( double x ); long long int llrintf( float x ); long long int llrintl( long double x );
The llrint(), llrintf(), and llrintl() functions round a floating-point number to the nearest integer value, using the current rounding direction.
To check for error situations, use feclearexcept() and fetestexcept(). For example:
The rounded integer value.
If: | These functions return: | Errors: |
---|---|---|
x is ±Inf | An unspecified value | FE_INVALID |
x is NaN | An unspecified value | FE_INVALID |
The correct value is too large to represent as a long long | An unspecified value | FE_INVALID |
These functions raise FE_INEXACT if the FPU reports that the result can't be exactly represented as a floating-point number.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |