Advertisement
Guest User

f

a guest
Nov 26th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. int tab[]={0};
  2.     printf("Podaj rozmiar wzorca: ");
  3.     scanf("%d", &a);
  4.     printf("Podaj elementy stanowiace wzorzec:\n ");
  5.     for(i=0; i<a; ++i)
  6.         {
  7.             printf("Element %d = ", i+1);
  8.             scanf("%d", &tab[i]);
  9.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement