ACashwith chandrainsigsegv.hashnode.dev00The hidden detail behind std::addressof in C++2d ago · 3 min read · In c++, even something like &obj is not always what it seems. Normally, when we write: struct Resource { int data = 42; }; int main() { Resource r; auto h = &r; std::cout << h << '\n'Join discussion