sub function

int sub (
  1. int a,
  2. int b
)

subtract a and b

Implementation

int sub(int a, int b) {
  return a - b;
}