C++ Standard Library C++ STL Library

C++ <cstdlib> - lldiv_t structure type



The C++ <cstdlib> lldiv_t is a structure to represent both the quotient and the remainder of the division of the integral numerator by integral denominator. This is the type returned by lldiv() function.

In the <cstdlib> header file, it is defined as follows:

struct lldiv_t { long long quot; long long rem; };

or 

struct lldiv_t { long long rem; long long quot; };

Example:

The example below shows the usage of <cstdlib> lldiv_t type.

#include <iostream>
#include <cstdlib>
using namespace std;
 
int main (){
  lldiv_t result = lldiv(50, 17);

  cout<<"lldiv(50, 17) gives quotient = "<<
      result.quot<<" and remainder = "<< 
      result.rem<<"\n";
  
  return 0;
}

The output of the above code will be:

lldiv(50, 17) gives quotient = 2 and remainder = 16

❮ C++ <cstdlib> Library