C Tutorial/math.h/llrint
Версия от 14:21, 25 мая 2010; (обсуждение)
llrint
Item Value Header file math.h Declaration long long int llrintf(float arg);long long int llrint(double arg);long long int llrintl(long double arg); Return returns the value of arg rounded to the nearest long long integer.
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%l", llrintl (111111111111111.2));
return 0;
}