fork download
  1. #include <iostream>
  2. #include <string>
  3. using std::cout; using std::endl;
  4. using std::string;
  5.  
  6. class Cat
  7. {
  8. public:
  9. int name;
  10. Cat() : name(0) { }
  11. int getName() { return name; }
  12. };
  13.  
  14. int main()
  15. {
  16. Cat* pointer = new Cat();
  17. pointer->name = 42;
  18. cout << "getName: " << pointer->getName() << endl;
  19. cout << "name: " << pointer->name << endl;
  20. delete pointer;
  21. }
Success #stdin #stdout 0s 2984KB
stdin
Standard input is empty
stdout
getName: 42
name: 42