SensingLab3/arithmetic.cpp

8 lines
78 B
C++

#include "arithmetic.h"
int add(int a, int b)
{
int c = a + b;
return c;
}