- Function
Divide two ints and return quotient and remainder.
- Header
- Declaration
div_t __fastcall__ div (int numer, int denom);- Description
divdividesnumerbydenomand returns the quotient and remainder in adiv_tstructure.- Limits
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
ISO 9899
- See also
ldiv
- Example
None.