C库函数int abs(int x)返回int abs(int x)的绝对值。
以下是abs()函数的声明。
int abs(int x)
x - 这是整数值。
此函数返回x的绝对值。
以下示例显示了abs()函数的用法。
#include <stdio.h>
#include <stdlib.h>
int main () {
int a, b;
a = abs(5);
printf("value of a = %d\n", a);
b = abs(-10);
printf("value of b = %d\n", b);
return(0);
}
让我们编译并运行上面的程序,这将产生以下结果 -
value of a = 5
value of b = 10