add.c 79 B

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