This commit is contained in:
2025-11-30 01:51:19 +03:00
commit 37237f67f8
12 changed files with 191 additions and 0 deletions

20
funcT.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include <iostream>
using namespace std;
int fun1 (int);
int fun2 (int);
int main (void) {
cout << fun1(4) + fun2(3) << endl;
return 0;
}
int fun1 (int i) {
return i;
}
int fun2 (int j) {
return j;
}