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.

17 lines
253 B

  1. #include "arithmeticMultiplication_Int.h"
  2. #include <stdlib.h>
  3. int* multiplication_integer(int a, int b) {
  4. int *result = (int*)malloc(sizeof(int));
  5. if (result == NULL) {
  6. return NULL;
  7. }
  8. *result = a * b;
  9. return result;
  10. }