Advertisement
LolekHD

Untitled

Feb 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int zadanie1(int n, int m){
  4. double **tab;
  5. int i;
  6. tab=malloc(n*sizeof *tab);
  7. for(i=0;i<n;i++)
  8. tab[i]=malloc(m*sizeof *tab[i]);
  9. return *tab[i];
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement