fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int** p = new int*[3];
  6.  
  7.  
  8.  
  9. int main() {
  10.  
  11.  
  12.  
  13.  
  14. for(int i = 0 ; i<3;i++)
  15. {
  16. for(int j = 0 ; j<3;j++)
  17. {
  18. p[i][j] = 1;
  19. }
  20. }
  21.  
  22. // your code goes here
  23. return 0;
  24. }
Runtime error #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty