Guest User

Untitled

a guest
Oct 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. int ** matrix = malloc(n*sizeof(int*));
  2. for(int i = 0; i < n; ++i)
  3. matrix[i] = malloc(m*sizeof(int));
Add Comment
Please, Sign In to add comment