在C語言中,fabs()是一個函數(shù),用于返回一個數(shù)的絕對值。fabs()函數(shù)接受一個參數(shù),可以是整數(shù)、浮點數(shù)或雙精度數(shù),并返回該參數(shù)的絕對值。fabs()函數(shù)被定義在<math.h>頭文件中。下面是一個示例:
#include <stdio.h>
#include <math.h>
int main() {
double num = -3.5;
double abs_num = fabs(num);
printf("The absolute value of %f is %f\n", num, abs_num);
return 0;
}
輸出結(jié)果為:
The absolute value of -3.500000 is 3.500000