Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>

int main()
{
int m,g,y,j;

printf("napisite koliko clanova zelite da ima vas niz:\n");


scanf("%d", &m);

int a[m];

printf("sada unesite vase brojeve:\n");

for(g=0;g<m;g++){
y=g+1;
printf("unesite %d. clan:\n",y );
scanf("%d", &a[g]);
}

printf("Vas niz zigleda ovako: \n");

for(j=0;j<m;j++){ printf(" %d ", a[j]); }


printf("\n");

system("pause");

return 0;
}

You might also like