fork download
  1. #include <stdio.h>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5. int main()
  6. {
  7. int* n = 0x00;
  8. printf("%x\n", &n);
  9. printf("%x\n", n);
  10.  
  11. n = nullptr;
  12. printf("%x\n", &n);
  13. printf("%x\n", n);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
a7c33538
0
a7c33538
0