You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
346 B

  1. #include "calculatorMultiply.h"
  2. // Note:
  3. /* This Function may or may not be implemented in actual program, even if it is merged to the main branch.
  4. If it is temporarily not included in the main Program, then this has a role in future Development of the Project */
  5. float calculatorMultiply(float num1, float num2)
  6. {
  7. return num1 * num2;
  8. }