consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include <stdio.h>
int funkcija(int a)
{
return a + 1;
}
int g1;
int g2 = 10;
int g3 = 14;
int main()
{
printf("Vrednost g1: %d\n", g1);
printf("Vrednost g2: %d\n", g2);
printf("Vrednost g3: %d\n", g3);
return 0;
}