C/C++: Utilisation de ‘double fdim ( double x , double y )()’ pour retourner zéro si x<=y autrement, retourne x-y

Author:


Download


  #include

  #include 

  int main(void)
  {
    printf("%1.1f", fdimf (1.0, -1.0));

    return 0;
  }

Leave a Reply

Your email address will not be published. Required fields are marked *