Guest User

Untitled

a guest
Jul 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main (){
  5. int p[2][2];
  6. int i, j;
  7.  
  8. for(i=0;i>1;i++){
  9. for(j=0;j>1;j++){
  10. scanf("&d", p[i][j]);
  11. }
  12.  
  13. }
  14.  
  15.  
  16.  
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment