fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. long long a[5][5]={0};
  6. for(int i=0;i<5;i++)
  7. for(int j=0;j<5;j++)
  8. cout<<a[i][j]<<" ";
  9. cout<<endl;
  10. return 0;
  11. }
Success #stdin #stdout 0s 4368KB
stdin
Standard input is empty
stdout
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0