Compare commits

..

2 Commits

Author SHA1 Message Date
Julian LECLERC 74925aa1df adding binary file 2022-03-30 10:41:26 +02:00
Julian LECLERC 4522050237 Test aritmetic function 2022-03-30 10:38:38 +02:00
5 changed files with 11 additions and 1 deletions

BIN
a.out Executable file

Binary file not shown.

View File

@ -1,4 +1,4 @@
#include arithmetic.h
#include "arithmetic.h"
int add(int a, int b)
{

BIN
arithmetic.o Normal file

Binary file not shown.

10
main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <iostream>
#include "arithmetic.h"
int main()
{
std::cout<<"Hello world!"<<std::endl;
std::cout<<"c="<<add(1,2)<<std::endl;
return 0;
}

BIN
main.o Normal file

Binary file not shown.