19 lines
233 B
C
19 lines
233 B
C
#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;
|
|
}
|