Page MenuHomec4science

this.cpp
No OneTemporary

File Metadata

Created
Sat, Aug 24, 02:16

this.cpp

#include <iostream>
struct Planet {
void test() { std::cout << this << std::endl; }
};
int main() {
Planet p;
std::cout << &p << std::endl;
p.test();
}

Event Timeline