fork download
  1. #import <stdio.h>
  2. #import <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. int *badpointer;
  8.  
  9. cout << &badpointer << endl;
  10. cout << badpointer << endl;
  11.  
  12. return 0; // Shouldn't be reached, hopefully.
  13. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
0xbfec317c
0xb7717ff4