consolidate all repos to one for archive
This commit is contained in:
18
semester_4/namenska_programska_oprema/Naloga_4/hello.c
Normal file
18
semester_4/namenska_programska_oprema/Naloga_4/hello.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user