Mega Code Archive

 
Categories / C / Math
 

Quotient and remainder for long

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