|
DIV (3) | C library functions | Unix Manual Pages | :man▋
NAME
div - return quotient and remainder from division
CONTENTS
Library Synopsis Description See Also Standards
LIBRARY
.Lb libc
SYNOPSIS
.In stdlib.h div_t div "int num" "int denom"
DESCRIPTION
The div function computes the value num/denom and returns the quotient and remainder in a structure named div_t that contains two .Vt int members named quot and rem.
SEE ALSO
imaxdiv(3), ldiv(3), lldiv(3)
STANDARDS
|