fork download
  1. #include <iostream>
  2.  
  3. class A {
  4. public:
  5. void foo() { std::cout << "Hello World!" << std::endl;}
  6. };
  7.  
  8. int main()
  9. {
  10. A* a = NULL;
  11. a->foo();
  12. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
Hello World!