Advertisement
DominikPasiut

Untitled

Jan 15th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. int  *alokacja_pamieci(int n)
  2. {
  3.     int *tab;
  4.    
  5.     tab = malloc(n * sizeof (int));
  6.     if (tab == NULL) return NULL;
  7.    
  8.     return tab;
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement