#include #include int main() { printf("The minimum of %f and %f is %f\n",6.0,12.0,min(6.0,12.0)); printf("the maximum of %f and %f is %f\n",6.0,12.0,max(6.0,12.0)); return 0; }