fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. bool dp[5][5]={false};
  6. for(int i=0;i<5;i++)
  7. {
  8. for(int j=0;j<5;j++) cout<<dp[i][j]<<" ";
  9. cout<<endl;
  10. }
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 4324KB
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