abs() - C語言庫函式


C庫函式int abs(int x) 返回x的絕對值。

宣告

以下是 abs() 函式的宣告。

int abs(int x)

引數

  • x -- 這是整數值。

返回值

這個函式返回x的絕對值。

例子

下面的例子演示了如何使用 abs() 函式。

#include <stdio.h>
#include <stdlib.h>

int main ()
{
   int a, b;

   a = abs(5);
   printf("value of a = %d
", a);

   b = abs(-10);
   printf("value of b = %d
", b);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

value of a = 5
value of b = 10