Round a floating-point number to the nearest integer value
#include <math.h> long long int llround( double x ); long long int llroundf( float x ); long long int llroundl( long double x );
The llround(), llroundf(), and llroundl() functions round a floating-point number to the nearest integer value, rounding halfway cases away from zero, regardless of 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 |