fork download
  1. #include <iostream>
  2.  
  3. class bar {
  4. public:
  5. bar() {
  6. std::cout << "Default initialized!" << std::endl;
  7. }
  8. bool a = true;
  9. };
  10.  
  11. struct foo {
  12. bool a = true;
  13. bool b;
  14. bar c;
  15. std::string d;
  16. };
  17.  
  18. int main()
  19. {
  20. foo bar = {};
  21. bar.d.append("...");
  22. std::cout << bar.a << " "<< bar.b << bar.d << std::endl;
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Default initialized!
1 0...