fork download
  1. #include <cstdio>
  2.  
  3. class Test
  4. {
  5. public:
  6. Test(){ printf("Test()\n"); };
  7. ~Test(){ printf("~Test()\n"); };
  8. };
  9.  
  10. int main()
  11. {
  12. printf("--a--\n");
  13. Test a;
  14. printf("--b--\n");
  15. Test b();
  16. printf("--c--\n");
  17. Test c = Test();
  18. printf("--end--\n");
  19. return 0;
  20. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
--a--
Test()
--b--
--c--
Test()
--end--
~Test()
~Test()