truncf(3)
            redondeo a entero, hacia cero
        
      
        
          Other Alias
          trunc, truncl
         
        
SINOPSIS
#include <math.h>
double trunc(double x);float truncf(float x);long double truncl(long double x);
 
DESCRIPCIÓN
Estas funciones redondean x al entero más cercano
que no sea mayor en valor absoluto.
VALOR DEVUELTO
El valor entero redondeado.
Si x es entero, infinito o NaN, se devuelve x tal cual.
ERRORES
Ninguno.
CONFORME A
C99.