Browse Source

arithmetic Subtraction specification

remotes/origin/develop
Leon Wolf 11 months ago
parent
commit
8d21cb81c5
  1. 2
      src/arithmeticSubtraction.c

2
src/arithmeticSubtraction.c

@ -2,7 +2,7 @@
#include "arithmeticSubtraction.h"
#include <stdlib.h>
//arithmetic Subtraction specification
int* subtraction_integer(int a, int b) {
int* result= malloc(sizeof (int));
*result=a - b;

Loading…
Cancel
Save