fdim()
The fdim()
function returns the positive difference between two arguments.
Syntax
cmath
library must be added at the top of the file.
std:fdim(x, y)
If the first argument is greater than the second argument fdim()
returns the first argument minus the second argument, otherwise it returns zero.
Example
double result1;double result2;result1 = std::fdim(6, 2); // 4result2 = std::fdim(4, 8); // 0
Codebyte Example
Use fdim()
to return the positive difference between 8
and 5
:
All contributors
- garanews222 total contributions
- christian.dinh2476 total contributions
- Anonymous contributorAnonymous contributor3071 total contributions
- StevenSwiniarski474 total contributions
- Christine_Yang271 total contributions
- garanews
- christian.dinh
- Anonymous contributor
- StevenSwiniarski
- Christine_Yang
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.