C/math.h/llrint — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:22, 25 мая 2010
llrint: returns the value of arg rounded to the nearest long long integer
//Declaration: long long int llrintf(float arg);
long long int llrint(double arg);
long long int llrintl(long double arg);
#include <math.h>
#include <stdio.h>
int main(void)
{
printf("%l", llrintl (111111111111111.2));
return 0;
}