30 lines
534 B
Plaintext
30 lines
534 B
Plaintext
|
|
ABSOLUTE_VALUE(1) ABSOLUTE_VALUE(1)
|
|
|
|
NAME
|
|
absolute_value() - returns the absolute value of a give
|
|
number
|
|
|
|
SYNOPSIS
|
|
int absolute_value(int x)
|
|
|
|
DESCRIPTION
|
|
Given any integer argument, it returns its absolute value.
|
|
|
|
EXAMPLES
|
|
absolute_value(-5) returns 5
|
|
|
|
o absolute_value(5) returns 5
|
|
|
|
LOCATION
|
|
/secure/sefun/absolute_value.c
|
|
|
|
SEE ALSO
|
|
percent()
|
|
|
|
Author
|
|
Descartes of Borg
|
|
|
|
1
|
|
|