fork download
  1. void foo(int& a)
  2. {
  3. a += 5;
  4. }
  5.  
  6. int main()
  7. {
  8. int& a = *reinterpret_cast<int*>(0);
  9. foo(a);
  10. }
Runtime error #stdin #stdout 0s 2824KB
stdin
Standard input is empty
stdout
Standard output is empty