mult.c 84 B

1234567
  1. #include <stdio.h>
  2. #include "head.h"
  3. int multiply(int a, int b)
  4. {
  5. return a*b;
  6. }