Maximum, Minimum, and Positive difference Functions:
x, y - floating point values
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
x, y - floating point values
| fmax(C99) | double fmax( double x, double y ); |
| fmaxf(C99) | float fmaxf( float x, float y ); |
| fmaxl(C99) | long double fmaxl( long double x, long double y ); |
| fmin(C99) | double fmin( double x, double y ); |
| fminf(C99) | float fminf( float x, float y ); |
| fminl(C99) | long double fminl( long double x, long double y ); |
| fdim(C99) | double fdim( double x, double y ); |
| fdimf(C99) | float fdimf( float x, float y ); |
| fdiml(C99) | long double fdiml( long double x, long double y ); |
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
No comments:
Post a Comment