C/math.h/llrint

Материал из C\C++ эксперт
Версия от 13:22, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

llrint: returns the value of arg rounded to the nearest long long integer

<source lang="cpp">

//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;
 }


      </source>