62
edições
==Nearest integer, absolute value, and remainder functions==
===
The <code>ceil</code> functions compute the smallest integral value not less than <code>x</code> and return the result; the <code>floor</code> functions compute the largest integral value not greater than <code>x</code> and return the result.
double floor(double x);
long double floorl(long double x); /* C99 */
===As funções <code>fabs</code>===
|
edições