fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int * roger[5] = {NULL};
  6. for(int i = 0; i < 5; ++i) std::cout << roger[i] << std::endl;
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
0
0
0
0
0