C/stdlib.h/lldiv — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:23, 25 мая 2010

lldiv: returns the quotient and remainder in an lldiv_t structure

    
//Declaration:  lldiv_t lldiv(long long int numerator, long long int denominator); 
  
  #include <stdlib.h>
  #include <stdio.h>
  int main(void)
  {
    ldiv_t n;
    n = ldiv(10L, 3L);
    printf("Quotient and remainder: %ld %ld.\n", n.quot, n.rem);
    return 0;
  }
         
/*
Quotient and remainder: 3 1.
*/