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 fmin() Function

❮ Math Functions


Example

Return the lowest value from different pairs of numbers:

printf("%f", fmin(2.0, 0.25));
printf("%f", fmin(31.2, 18.0));
printf("%f", fmin(14, 22));
printf("%f", fmin(96, 2048));
Try it Yourself »

Definition and Usage

The fmin() function returns the number with the lowest value from a pair of numbers.

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

Tip: Use the fmax() function to return the number with the highest value.


Syntax

One of the following:

fmin(double x, double y);

Parameter Values

Parameter Description
x Required. Specifies a value to be compared.
y Required. Specified a value to be compared.

Technical Details

Returns: A double value representing the lowest of two numbers.

❮ Math Functions


Related Pages

C Functions Tutorial

C Math Functions Tutorial