Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int zerowanie(unsigned int n, int *tab)
  4. {
  5. int i;
  6. for(i=0; i<n; i++)
  7. tab[i]=i;
  8.  
  9. }
  10.  
  11. int main()
  12. {
  13.  
  14.  
  15.  
  16.  
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement