Download 019P Manual - Digi-Key

Transcript
Library Functions
ABS
Synopsis
#include <stdlib.h>
int abs (int j)
Description
The abs() function returns the absolute value of j.
Example
#include <stdio.h>
#include <stdlib.h>
void
main (void)
{
int a = -5;
printf("The absolute value of %d is %d\n", a, abs(a));
}
See Also
labs(), fabs()
Return Value
The absolute value of j.
197