labs() - C語言庫函式


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