C庫函數(shù)long int labs(long int x)返回x的絕對(duì)值。
以下是聲明labs()函數(shù)。
long int labs(long int x)
x -- 這是整數(shù)值。
這個(gè)函數(shù)返回x的絕對(duì)值x.
下面的例子顯示使用 labs() 函數(shù)。
#include <stdio.h> #include <stdlib.h> int main () { long int a,b; a = labs(65987L); printf("Value of a = %ld ", a); b = labs(-1005090L); printf("Value of b = %ld ", b); return(0); }
讓我們編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
Value of a = 65987 Value of b = 1005090