fork download
  1. #include <iostream>
  2.  
  3. struct S
  4. {
  5. int m;
  6. };
  7.  
  8. int main()
  9. {
  10. static S s;
  11. constexpr const int* p = &(((S*) &s )->m);
  12. std::cout << p;
  13. }
Success #stdin #stdout 0.01s 5572KB
stdin
Standard input is empty
stdout
0x404178