fork download
  1. #include <iostream>
  2.  
  3. typedef struct {
  4. int x, y;
  5. } Point;
  6.  
  7.  
  8. int main() {
  9. Point pt = { .x = 123, .y = 321 };
  10. return 0;
  11. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty