This commit is contained in:
Julian LECLERC 2022-03-30 09:21:53 +02:00
parent 59c122ba0d
commit 443de54368
2 changed files with 9 additions and 0 deletions

7
arithmetic.cpp Normal file
View File

@ -0,0 +1,7 @@
#include arithmetic.h
int add(int a, int b)
{
int c = a+b;
return c;
}

2
arithmetic.h Normal file
View File

@ -0,0 +1,2 @@
int add(int,int);