Advertisement
LolekHD

Untitled

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