Advertisement
LolekHD

Untitled

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