C庫函式long int labs(long int x)返回x的絕對值。
以下是宣告labs()函式。
long int labs(long int x)
x -- 這是整數值。
這個函式返回x的絕對值x.
下面的例子顯示使用 labs() 函式。
#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); }
讓我們編譯和執行上面的程式,這將產生以下結果:
Value of a = 65987 Value of b = 1005090