位置:首頁 > 高級語言 > C語言標準庫 > labs() - C語言庫函數

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