C fabs() Function
You are Here:
C fabs() Function
The fabs()
function returns the absolute value of the given number.
This function is defined in <math.h> header file.
Note: The abs() is used to calculate the absolute value for integer type numbers whereas fabs()
are used for floating type numbers.
Example
C Compiler
#include <stdio.h>
#include <math.h>
int main()
{
printf("fabs(-2.45) = %.2lf\n", fabs(-2.45));
printf("fabs(2.45) = %.2lf", fabs(2.45));
return 0;
}
Output
fabs(-2.45) = 2.45
fabs(2.45) = 2.45
Syntax
double fabs(double x)
Parameter Values
Value | Type | Explanation |
---|---|---|
x | Required | Specifies a floating point value. |
Return Value
Value | Explanation |
---|---|
Number | Returns the absolute value of the given number. |
Reminder
Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.
We are working to cover every Single Concept in C.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.