Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int x,y;
  2.  
  3. int ***tablica;
  4. tablica=(int ***)malloc(4*sizeof(int **));
  5.  
  6. for(x=0;x<4;x++)
  7. {
  8. tablica[x]=(int **)malloc(4*sizeof(int *));
  9. for(y=0;y<4;y++)
  10. tablica[x][y]=(int *)malloc(4*sizeof(int));
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement