Menu
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

C Math fabs() Function

❮ Math Functions


Example

Return the absolute (positive) value of different numbers:

printf("%f", fabs(-4.7));
printf("%f", fabs(4.7));
printf("%f", fabs(3));
Try it Yourself »

Definition and Usage

The fabs() function returns the absolute (positive) value of a number.

The fabs() function is defined in the <math.h> header file.


Syntax

One of the following:

fabs(double number);

Parameter Values

Parameter Description
number Required. Specifies a number.

Technical Details

Returns: A double value representing the absolute value of the specified number.

❮ Math Functions


Related Pages

C Functions Tutorial

C Math Functions Tutorial