◄Up► ◄Contents► ◄Index► ◄Back► ─────Run-Time Library─────────────────────────────────────────────────────── Include: <stdlib.h> Context: div, ldiv Structure: typedef struct { int quot; // Quotient int rem; // Remainder } div_t; typedef struct { long quot; // Quotient long rem; // Remainder } ldiv_t; -♦-