cs240/labs/lab1/task2/add.c
2018-10-15 17:20:57 -04:00

6 lines
58 B
C

// add function
int add(int a, int b) {
return a + b;
}