fork download
  1. #include <iostream>
  2.  
  3. void f(int size)
  4. {
  5. char c[size];
  6. c[5] = 'X';
  7. std::cout << c[5];
  8. }
  9.  
  10. int main()
  11. {
  12. f(10);
  13. return 0;
  14. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
X