fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int cool[10] = {0};
  6. for(unsigned int i=0; i < 10; ++i)
  7. std::cout << cool[i] << std::endl;
  8.  
  9. int notcool[10];
  10. for(unsigned int i=0; i < 10; ++i)
  11. std::cout << notcool[i] << std::endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
0
0
0
0
0
0
0
0
0
0
0
-1217220620
134514084
134514160
-1078353960
-1218337616
134520560
134514944
-1078353928
134514427