fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Point {
  5. int x,y;
  6. };
  7.  
  8. struct Array {
  9. Point elem[3];
  10. };
  11.  
  12. int main() {
  13. Array points2 {{{1,2},{3,4},{5,6}}};
  14. return 0;
  15. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty