Specific usage can refer to the following examples:
int? a=-5,? b;
b? =? ABS(a);
printf("%d\n ",b); ? //? The output result is 5. Note: The parameter value of this function must be of type int. If it is not an int type, use fabs () function (this function takes the absolute value of float type data).