在C语言中,可以使用标准库函数abs()来计算一个整数的绝对值。该函数的原型为:
int abs(int x);
其中x为要计算绝对值的整数。abs()函数会返回x的绝对值,即如果x为正数则返回x,如果x为负数则返回-x。
例如,可以这样使用abs()函数:
#include <stdio.h>
#include <stdlib.h>
int main() {
int num = -10;
int abs_num = abs(num);
printf("The absolute value of %d is %d\n", num, abs_num);
return 0;
}
输出为:
The absolute value of -10 is 10
因此,abs()函数可以用来计算整数的绝对值。