fork download
  1. #include <iostream>
  2.  
  3. // POD
  4. struct foo1 {
  5. bool a = true;
  6. bool b;
  7. };
  8.  
  9. // not POD
  10. struct foo2 {
  11. bool a = true;
  12. bool b;
  13. std::string c;
  14. };
  15.  
  16.  
  17. int main()
  18. {
  19. {
  20. foo1 bar;
  21. std::cout << "foo1: " << bar.a << " "<< bar.b << std::endl;
  22. }
  23. {
  24. foo2 bar;
  25. std::cout << "foo2: " << bar.a << " "<< bar.b << std::endl;
  26. }
  27. {
  28. foo2 bar = {};
  29. std::cout << "foo2 = {}: " << bar.a << " "<< bar.b << std::endl;
  30. }
  31.  
  32. return 0;
  33. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
foo1: 1 0
foo2: 1 7
foo2 = {}: 1 0