Query: div
OS: osf1
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
abs(3) Library Functions Manual abs(3) delim $$NAMEabs, div, labs, ldiv - Computes absolute value and division of integersLIBRARYStandard C Library (libc.a)SYNOPSIS#include <stdlib.h> int abs ( int i ); long labs ( long i ); div_t div ( int numerator , int denominator); ldiv_t ldiv ( long numerator, long denominator);PARAMETERSFor abs(), specifies some integer. For labs(), specifies some long integer. For div(), specifies some integer. For ldiv(), specifies some long integer. For div(), specifies some integer. For ldiv(), specifies some long integer.DESCRIPTIONThe abs() function returns the absolute value of its integer operand. The div() function computes the quotient and remainder of the division of the numerator numerator by the denominator denominator. If the division is inexact, the sign of the resulting quotient is that of the algebraic quotient, and the magnitude of the resulting quotient is the largest integer less than the magnitude of the algebraic quotient. If the result cannot be represented (for example, if the denominator is 0), the behavior is undefined. The div() function returns a value of type div_t, comprising both the quotient and the remainder. The labs() and ldiv() functions perform the same functions as abs() and div() respectively, but accept long integers rather than integers as parameters. The ldiv() function returns a value of type ldiv_t, comprising both the quotient and the remainder.NOTESThe abs(), labs(), div(), and ldiv() functions are supported for multithreaded applications. A two's-complement integer can hold a negative number whose absolute value is too large for the integer to hold. When given this largest negative value, the abs() function returns the same value. Full useRETURN VALUESThe abs() function and labs() function return the absolute value of their arguments. The div() function returns a value of type div_t and the ldiv() function returns a value of type ldiv_t.RELATED INFORMATIONFunctions: floor(3) delim off delim off abs(3)
Related Man Pages |
---|
ldiv(3p) - centos |
lldiv(3p) - centos |
lldiv(3p) - suse |
div(3) - osf1 |
ldiv(3c) - sunos |
Similar Topics in the Unix Linux Community |
---|
fun with tar |
Problem in division |
division operation in shell script |
Dividing a column by it's first number |
Concatenate text between patterns in individual strings |