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
178 B

  1. #include "arithmeticSubtraction.h"
  2. #include <stdlib.h>
  3. int* subtraction_integer(int a, int b) {
  4. int* result= malloc(sizeof (int));
  5. *result=a - b;
  6. return result;
  7. }