Item | Value |
Header file | math.h |
Declaration | float fminf(float a, float b); double fmin(double a, double b); long double fminl(long double a, long double b); |
Return | returns the lesser of a and b. |
#include <math.h> #include <stdio.h> int main(void) { printf("%l", fminl (10,12)); }
19.24.fmin | ||||
19.24.1. | fmin |