Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<iostream.h>
  2. #include<conio.h>
  3.  
  4. //Created By Krisna
  5.  
  6. void main()
  7. {
  8.  
  9. int matrix[3][4]={{5,10,11},{4,7,67,-9},{9,0,45,3}};
  10. for(int i=0;i<3;i++)
  11.     {
  12.     for(int j=0;j<4;j++)
  13.         {
  14.             cout<<matrix[i][j]<<" ";
  15.         }
  16.      cout<<endl;
  17.   }
  18.   getch();
  19.  
  20. }