Advertisement
KlimexuS

Untitled

Jan 5th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. #define RozmiarTablicy 1000
  4.  
  5. struct struktura
  6. {
  7. int tab[RozmiarTablicy];
  8. int LiczbaElementow;
  9. int schowek[RozmiarTablicy];
  10. int LiczbaKopiowanych;
  11. }
  12.  
  13. int main()
  14. {
  15.  
  16.  
  17. }
  18.  
  19. void add(int* tab)
  20. {
  21. scanf("%d", tab);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement