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