This commit is contained in:
2024-02-25 19:38:56 +01:00
parent 278491822a
commit 87707069d7
15 changed files with 32416 additions and 0 deletions

11
02-19/App4.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
int sum(int a, int b){
//hianyzik a return
int osszeg = a + b;
}
int main()
{
sum(2,3);
}