fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main ( )
  6. {
  7. int *i = NULL;
  8.  
  9. *i = 69;
  10.  
  11. cout << ";)" << endl;
  12.  
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty