描述
C库函数long int labs(long int x)返回绝对值x。
声明
以下是 labs() 函数的声明。
long int labs(long int x)
参数
x─ 这是积分值。
返回值
此函数返回绝对值x。
示例
下面的例子展示了 labs() 函数的用法。
#include <stdio.h>
#include <stdlib.h>
int main () {
long int a,b;
a = labs(65987L);
printf("Value of a = %ld\n", a);
b = labs(-1005090L);
printf("Value of b = %ld\n", b);
return(0);
}
让我们编译并运行上面的程序,它会产生以下结果——
Value of a = 65987 Value of b = 1005090
相关用法
- C语言 linerel()用法及代码示例
- C语言 log()用法及代码示例
- C语言 ldiv()用法及代码示例
- C语言 localeconv()用法及代码示例
- C语言 log10()用法及代码示例
- C语言 localtime()用法及代码示例
- C语言 ldexp()用法及代码示例
- C语言 longjmp()用法及代码示例
- C语言 lineto()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 scanf()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - labs()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。