initial commit

This commit is contained in:
2026-07-18 20:34:55 +02:00
commit 59ad004c96
474 changed files with 226635 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
void copyi(int * a, int * b, int n)
{
for(int i=0; i<n; i++)
b[i] = a[i];
}
int main(void)
{
int t[100], s[100];
for(int i=0; i<100; i++)
s[i] = i;
copyi(s, t, 100);
int sum = 0;
for(int i=0; i<100; i++)
sum += t[i];
return sum - 4950;
}