fork download
  1. #include <iostream>
  2. using namespace std;
  3. struct A
  4. {
  5. int a;
  6. A()
  7. {
  8. a = 99;
  9. }
  10. };
  11. struct B
  12. {
  13. A a_array[3];
  14. B()
  15. {}
  16. };
  17. int main() {
  18. // your code goes here
  19. B obj;
  20. cout<<obj.a_array[0].a<<" "<<obj.a_array[1].a<<" "<<obj.a_array[2].a<<endl;
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5264KB
stdin
Standard input is empty
stdout
99 99 99