fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Block {
  5. int number;
  6. };
  7.  
  8. int main() {
  9.  
  10. Block block;
  11.  
  12. auto reference = &block;
  13. cout << reference << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
0xbfc2fdec